Sha256: f66c1929d62cda43067594d28080c99746f78d614d08f4d88906a45655f8920e

Contents?: true

Size: 1.4 KB

Versions: 14

Compression:

Stored size: 1.4 KB

Contents

require File.dirname(__FILE__) + '/../../../spec_helper.rb'

describe "Object#should" do
  before(:each) do
    @target = "target"
    @matcher = mock("matcher")
    @matcher.stub!(:matches?).and_return(true)
    @matcher.stub!(:failure_message)
  end
  
  it "should accept and interact with a matcher" do
    @matcher.should_receive(:matches?).with(@target).and_return(true)
    
    @target.should @matcher
  end
  
  it "should ask for a failure_message when matches? returns false" do
    @matcher.should_receive(:matches?).with(@target).and_return(false)
    @matcher.should_receive(:failure_message).and_return("the failure message")
    lambda {
      @target.should @matcher
    }.should fail_with("the failure message")
  end
end

describe "Object#should_not" do
  before(:each) do
    @target = "target"
    @matcher = mock("matcher")
  end
  
  it "should accept and interact with a matcher" do
    @matcher.should_receive(:matches?).with(@target).and_return(false)
    @matcher.stub!(:negative_failure_message)
    
    @target.should_not @matcher
  end
  
  it "should ask for a negative_failure_message when matches? returns true" do
    @matcher.should_receive(:matches?).with(@target).and_return(true)
    @matcher.should_receive(:negative_failure_message).and_return("the negative failure message")
    lambda {
      @target.should_not @matcher
    }.should fail_with("the negative failure message")
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
has_finder-0.1.2 spec/rails/vendor/plugins/rspec/spec/spec/expectations/extensions/object_spec.rb
has_finder-0.1.1 spec/rails/vendor/plugins/rspec/spec/spec/expectations/extensions/object_spec.rb
has_finder-0.1.3 spec/rails/vendor/plugins/rspec/spec/spec/expectations/extensions/object_spec.rb
rspec-0.9.3 spec/spec/expectations/extensions/object_spec.rb
rspec-0.9.4 spec/spec/expectations/extensions/object_spec.rb
rspec-1.0.0 spec/spec/expectations/extensions/object_spec.rb
rspec-1.0.1 spec/spec/expectations/extensions/object_spec.rb
rspec-1.0.2 spec/spec/expectations/extensions/object_spec.rb
rspec-1.0.3 spec/spec/expectations/extensions/object_spec.rb
rspec-1.0.4 spec/spec/expectations/extensions/object_spec.rb
rspec-0.9.0 spec/spec/expectations/extensions/object_spec.rb
rspec-1.0.5 spec/spec/expectations/extensions/object_spec.rb
rspec-0.9.1 spec/spec/expectations/extensions/object_spec.rb
rspec-0.9.2 spec/spec/expectations/extensions/object_spec.rb