Skip to content

Instantly share code, notes, and snippets.

@jamescarr
Last active October 20, 2016 16:48
Show Gist options
  • Save jamescarr/2585f8798e2ecf27fff38149d8c81c94 to your computer and use it in GitHub Desktop.
Save jamescarr/2585f8798e2ecf27fff38149d8c81c94 to your computer and use it in GitHub Desktop.
verify(foo).doSomething(any(Thing.class), 4)
args = foo.do_something.call_args
assert isinstance(arg[0], Thing)
assert arg[1] == 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment