You can find an example at https://github.com/cloudfoundry/cloud_controller_ng/blob/c63d33c0b1c2298d49a0bad959222b9c3daba16a/spec/unit/controllers/services/service_instances_controller_spec.rb#L1748 :
The second test in this block shows this:
expect(last_response).to have_status_code 202
expect(decoded_response['entity']['guid']).to be
expect(decoded_response['entity']['status']).to eq 'queued'
I see that we're matching against a new instance of Matchers::BuiltIn::Be
,
but at this point it's hard to see what we're actually matching against.
Ruby 2.1.3, rspec 3.0.0, rspec-expectations 3.0.4
As per the
be
matchers documentation,expect(obj).to be
this test passes ifobj
is truthy (notnil
orfalse
).expect(decoded_response['entity']['guid']).to be
means as documentation said, if the value ofdecoded_response['entity']['guid']
is any object, but notnil
orfalse
, the test will pass.Here is a demo example :
Lets run this test :-