How can I stub a method within a module:
module SomeModule
def method_one
# do stuff
something = method_two(some_arg)
# so more stuff
end
def method_two(arg)
# do stuff
end
end
I can test method_two
in isolation fine.
I would like to test method_one
in isolation too by stubbing the return value of method_two
:
shared_examples_for SomeModule do
it 'does something exciting' do
# neither of the below work
# SomeModule.should_receive(:method_two).and_return('MANUAL')
# SomeModule.stub(:method_two).and_return('MANUAL')
# expect(described_class.new.method_one).to eq(some_value)
end
end
describe SomeController do
include_examples SomeModule
end
The specs in SomeModule
that are included in SomeController
fail because method_two
throws an exception (it tries to do a db lookup that has not been seeded).
How can I stub method_two
when it is called within method_one
?
allow_any_instance_of(M).to receive(:foo).and_return(:bar)
Is there a way to stub a method of an included module with Rspec?
This approach works for me
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With