From dcc312ac215b57afc648725bb8d64ff287bf7798 Mon Sep 17 00:00:00 2001 From: Seb Bacon Date: Wed, 15 Feb 2012 10:02:30 +0000 Subject: Merge jpmckinney/bundler --- vendor/gems/rspec-1.3.1/lib/spec/expectations.rb | 35 ------------------------ 1 file changed, 35 deletions(-) delete mode 100644 vendor/gems/rspec-1.3.1/lib/spec/expectations.rb (limited to 'vendor/gems/rspec-1.3.1/lib/spec/expectations.rb') diff --git a/vendor/gems/rspec-1.3.1/lib/spec/expectations.rb b/vendor/gems/rspec-1.3.1/lib/spec/expectations.rb deleted file mode 100644 index 13cf59b26..000000000 --- a/vendor/gems/rspec-1.3.1/lib/spec/expectations.rb +++ /dev/null @@ -1,35 +0,0 @@ -require 'spec/matchers' -require 'spec/expectations/fail_with' -require 'spec/expectations/errors' -require 'spec/expectations/extensions' -require 'spec/expectations/handler' - -module Spec - - # Spec::Expectations lets you set expectations on your objects. - # - # result.should == 37 - # team.should have(11).players_on_the_field - # - # == How Expectations work. - # - # Spec::Expectations adds two methods to Object: - # - # should(matcher=nil) - # should_not(matcher=nil) - # - # Both methods take an optional Expression Matcher (See Spec::Matchers). - # - # When +should+ receives an Expression Matcher, it calls matches?(self). If - # it returns +true+, the spec passes and execution continues. If it returns - # +false+, then the spec fails with the message returned by matcher.failure_message. - # - # Similarly, when +should_not+ receives a matcher, it calls matches?(self). If - # it returns +false+, the spec passes and execution continues. If it returns - # +true+, then the spec fails with the message returned by matcher.negative_failure_message. - # - # RSpec ships with a standard set of useful matchers, and writing your own - # matchers is quite simple. See Spec::Matchers for details. - module Expectations - end -end -- cgit v1.2.3