1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
Feature: stub on any instance of a class
Use `any_instance.stub` on a class to tell any instance of that class to
return a value (or values) in response to a given message. If no instance
receives the message, nothing happens.
Messages can be stubbed on any class, including those in Ruby's core library.
Note: You can use `allow_any_instance_of` when you don't have a reference
to the object that receives a message in your test. For more information,
see the message_expectations/allow_any_instance_of feature.
Scenario: any_instance stub with a single return value
Given a file named "example_spec.rb" with:
"""ruby
describe "any_instance.stub" do
it "returns the specified value on any instance of the class" do
Object.any_instance.stub(:foo).and_return(:return_value)
o = Object.new
o.foo.should eq(:return_value)
end
end
"""
When I run `rspec example_spec.rb`
Then the examples should all pass
Scenario: any_instance stub with a hash
Given a file named "example_spec.rb" with:
"""ruby
describe "any_instance.stub" do
context "with a hash" do
it "returns the hash values on any instance of the class" do
Object.any_instance.stub(:foo => 'foo', :bar => 'bar')
o = Object.new
o.foo.should eq('foo')
o.bar.should eq('bar')
end
end
end
"""
When I run `rspec example_spec.rb`
Then the examples should all pass
Scenario: any_instance stub with specific arguments matchers
Given a file named "example_spec.rb" with:
"""ruby
describe "any_instance.stub" do
context "with arguments" do
it "returns the stubbed value when arguments match" do
Object.any_instance.stub(:foo).with(:param_one, :param_two).and_return(:result_one)
Object.any_instance.stub(:foo).with(:param_three, :param_four).and_return(:result_two)
o = Object.new
o.foo(:param_one, :param_two).should eq(:result_one)
o.foo(:param_three, :param_four).should eq(:result_two)
end
end
end
"""
When I run `rspec example_spec.rb`
Then the examples should all pass
Scenario: any_instance unstub
Given a file named "example_spec.rb" with:
"""ruby
describe "any_instance.unstub" do
it "unstubs a stubbed method" do
class Object
def foo
:foo
end
end
Object.any_instance.stub(:foo)
Object.any_instance.unstub(:foo)
Object.new.foo.should eq(:foo)
end
end
"""
When I run `rspec example_spec.rb`
Then the examples should all pass
Scenario: any_instance unstub
Given a file named "example_spec.rb" with:
"""ruby
describe "any_instance.unstub" do
context "with both an expectation and a stub already set" do
it "only removes the stub" do
class Object
def foo
:foo
end
end
Object.any_instance.should_receive(:foo).and_return(:bar)
Object.any_instance.stub(:foo)
Object.any_instance.unstub(:foo)
Object.new.foo.should eq(:bar)
end
end
end
"""
When I run `rspec example_spec.rb`
Then the examples should all pass
Scenario: stub a chain of methods an any instance
Given a file named "stub_chain_spec.rb" with:
"""ruby
describe "stubbing a chain of methods" do
context "given symbols representing methods" do
it "returns the correct value" do
Object.any_instance.stub_chain(:one, :two, :three).and_return(:four)
Object.new.one.two.three.should eq(:four)
end
end
context "given a hash at the end" do
it "returns the correct value" do
Object.any_instance.stub_chain(:one, :two, :three => :four)
Object.new.one.two.three.should eq(:four)
end
end
context "given a string of methods separated by dots" do
it "returns the correct value" do
Object.any_instance.stub_chain("one.two.three").and_return(:four)
Object.new.one.two.three.should eq(:four)
end
end
end
"""
When I run `rspec stub_chain_spec.rb`
Then the examples should all pass
|