Skip to content

Instantly share code, notes, and snippets.

@ream88
Created February 27, 2012 21:16
Show Gist options
  • Select an option

  • Save ream88/1927161 to your computer and use it in GitHub Desktop.

Select an option

Save ream88/1927161 to your computer and use it in GitHub Desktop.
Mock :verify: method with MiniTest::Mock
class MiniTest::Mock
alias_method :__verify, :verify
undef :verify
end
mock = MiniTest::Mock.new
# call :verify on mock object
# ...
# Verify mocked calls
mock.__verify
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment