Skip to content

Instantly share code, notes, and snippets.

@CoryFoy
Created December 26, 2012 21:46
Show Gist options
  • Save CoryFoy/4383355 to your computer and use it in GitHub Desktop.
Save CoryFoy/4383355 to your computer and use it in GitHub Desktop.
Testing recursion in RSpec
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
@mattvanhorn
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment