Created
December 26, 2012 21:46
-
-
Save CoryFoy/4383355 to your computer and use it in GitHub Desktop.
Testing recursion in RSpec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it "calls recursively" do | |
MyClass.class_eval do | |
class << self | |
alias_method :mymethod_normal, :mymethod | |
end | |
end | |
MyClass.should_receive(:mymethod) | |
MyClass.mymethod_normal | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What about just using https://github.com/technicalpickles/rspec-spies ?