Sha256: bc825a0a3847f18ae0bcccc09de6974c6b528064b13322e82a5a578f5e618217

Contents?: true

Size: 1.17 KB

Versions: 44

Compression:

Stored size: 1.17 KB

Contents

require 'spec_helper'

describe "An object where respond_to? is true and does not have method" do
  # When should_receive(:sym) is sent to any object, the Proxy sends
  # respond_to?(:sym) to that object to see if the method should be proxied.
  #
  # If respond_to? itself is proxied, then when the Proxy sends respond_to?
  # to the object, the proxy is invoked and responds yes (if so set in the spec).
  # When the object does NOT actually respond to :sym, an exception is thrown
  # when trying to proxy it.
  #
  # The fix was to keep track of whether :respond_to? had been proxied and, if
  # so, call the munged copy of :respond_to? on the object.

  it "should not raise an exception for Object" do
    obj = Object.new
    obj.should_receive(:respond_to?).with(:foobar).and_return(true)
    obj.should_receive(:foobar).and_return(:baz)
    obj.respond_to?(:foobar).should be_true
    obj.foobar.should == :baz
  end

  it "should not raise an exception for mock" do
    obj = mock("obj")
    obj.should_receive(:respond_to?).with(:foobar).and_return(true)
    obj.should_receive(:foobar).and_return(:baz)
    obj.respond_to?(:foobar).should be_true
    obj.foobar.should == :baz
  end

end

Version data entries

44 entries across 44 versions & 12 rubygems

Version Path
rspec-instructure-1.3.3 spec/spec/mocks/bug_report_8165_spec.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/rspec-1.3.2/spec/spec/mocks/bug_report_8165_spec.rb
rspec-1.3.2 spec/spec/mocks/bug_report_8165_spec.rb
rspec-1.3.1 spec/spec/mocks/bug_report_8165_spec.rb
rspec-1.3.1.rc spec/spec/mocks/bug_report_8165_spec.rb
rspec-mocks-2.0.0.beta.4 spec/rspec/mocks/bug_report_8165_spec.rb
rspec-mocks-2.0.0.beta.3 spec/rspec/mocks/bug_report_8165_spec.rb
rspec-mocks-2.0.0.beta.2 spec/rspec/mocks/bug_report_8165_spec.rb
rspec-mocks-2.0.0.beta.1 spec/rspec/mocks/bug_report_8165_spec.rb
rspec-mocks-2.0.0.a10 spec/rspec/mocks/bug_report_8165_spec.rb
rspec-mocks-2.0.0.a9 spec/rspec/mocks/bug_report_8165_spec.rb
rspec-mocks-2.0.0.a8 spec/rspec/mocks/bug_report_8165_spec.rb
rspec-mocks-2.0.0.a7 spec/rspec/mocks/bug_report_8165_spec.rb
rspec-mocks-2.0.0.a6 spec/rspec/mocks/bug_report_8165_spec.rb
rspec-mocks-2.0.0.a5 spec/rspec/mocks/bug_report_8165_spec.rb
rspec-mocks-2.0.0.a4 spec/rspec/mocks/bug_report_8165_spec.rb
rspec-mocks-2.0.0.a3 spec/rspec/mocks/bug_report_8165_spec.rb
rspec-1.3.0 spec/spec/mocks/bug_report_8165_spec.rb
hubbub-0.0.11 lib/vendor/plugins/rspec/spec/spec/mocks/bug_report_8165_spec.rb
hubbub-0.0.10 lib/vendor/plugins/rspec/spec/spec/mocks/bug_report_8165_spec.rb