Skip to content

Instantly share code, notes, and snippets.

@bkempner
Created September 6, 2011 18:18
Show Gist options
  • Save bkempner/1198500 to your computer and use it in GitHub Desktop.
Save bkempner/1198500 to your computer and use it in GitHub Desktop.
require 'spec_helper'
describe 'wtf' do
it "doesn't allow calls to a mocked method with different args" do
mock(User).find
User.find(1)
User.find(23) # where uses find internally
end
# error unexpected find(23) called
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment