Skip to content

Instantly share code, notes, and snippets.

@zzzeek
Created February 4, 2014 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zzzeek/8807841 to your computer and use it in GitHub Desktop.
Save zzzeek/8807841 to your computer and use it in GitHub Desktop.
>>> import mock
>>> sess = mock.Mock()
>>> sess.query().filter(x=2).first.return_value = 5
>>> sess.query().filter(x=2).first()
5
>>> sess.query().filter(x=3).first() # <-- should not return 5, I'd like the "x=2" to be significant
5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment