ruby - How to test a method call in a constructor with rspec - Stack Overflow
i have a constructor like this:
class Foo
def initialize(options)
@options = options
initialize_some_other_stuff
end
end
and want to test the call to initialize_some_other_stuff if a
stackoverflow.com