Skip to content

Instantly share code, notes, and snippets.

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 masahitojp/ff84c37b7ae1b9430005e536d60f43cc to your computer and use it in GitHub Desktop.
Save masahitojp/ff84c37b7ae1b9430005e536d60f43cc to your computer and use it in GitHub Desktop.
>>> from datetime import datetime
>>> from unittest import mock
>>> with mock.patch('__main__.datetime') as m:
... datetime.now() > datetime.now()
...
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
TypeError: '>' not supported between instances of 'MagicMock' and 'MagicMock'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment