Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. def test_thing(self):
  2. @mock.patch.object(self.compute, 'foo')
  3. @mock.patch.object(self.compute, 'bar')
  4. def really_test_thing(mock1, mock2):
  5. ...
  6.  
  7. really_test_thing()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement