Sha256: 8f6c6695bf8b37651fd6af3d8f5d5e92020747508addd677556346c4df200790
Contents?: true
Size: 1.38 KB
Versions: 26
Compression:
Stored size: 1.38 KB
Contents
require 'rspec/matchers' require 'rspec/expectations/fail_with' require 'rspec/expectations/errors' require 'rspec/expectations/extensions' require 'rspec/expectations/handler' require 'rspec/expectations/version' require 'rspec/expectations/backward_compatibility' require 'rspec/expectations/differ' module RSpec # RSpec::Expectations lets you set expectations on your objects. # # result.should == 37 # team.should have(11).players_on_the_field # # == How Expectations work. # # RSpec::Expectations adds two methods to Object: # # should(matcher=nil) # should_not(matcher=nil) # # Both methods take an optional Expression Matcher (See RSpec::Matchers). # # When +should+ receives an Expression Matcher, it calls <tt>matches?(self)</tt>. If # it returns +true+, the spec passes and execution continues. If it returns # +false+, then the spec fails with the message returned by <tt>matcher.failure_message</tt>. # # Similarly, when +should_not+ receives a matcher, it calls <tt>matches?(self)</tt>. If # it returns +false+, the spec passes and execution continues. If it returns # +true+, then the spec fails with the message returned by <tt>matcher.negative_failure_message</tt>. # # RSpec ships with a standard set of useful matchers, and writing your own # matchers is quite simple. See RSpec::Matchers for details. module Expectations end end
Version data entries
26 entries across 26 versions & 2 rubygems