Sha256: 6ecb317b60c67720233fc210c500ac3e7b8d0229bff7c77cdc524304063e11d8
Contents?: true
Size: 703 Bytes
Versions: 19
Compression:
Stored size: 703 Bytes
Contents
# RSpec Expectations rspec-expectations adds `should` and `should_not` to every object and includes RSpec::Matchers, a library of standard matchers. ## Matchers Matchers are objects used to compose expectations: result.should eq("this value") In that example, `eq("this value")` returns a `Matcher` object that compares the actual `result` to the expected `"this value"`. ## Contribute See [http://github.com/rspec/rspec-dev](http://github.com/rspec/rspec-dev) ## Also see * [http://github.com/rspec/rspec](http://github.com/rspec/rspec) * [http://github.com/rspec/rspec-core](http://github.com/rspec/rspec-core) * [http://github.com/rspec/rspec-mocks](http://github.com/rspec/rspec-mocks)
Version data entries
19 entries across 19 versions & 2 rubygems