Skip to content

Instantly share code, notes, and snippets.

@andrewsmedina
Created July 8, 2011 19:45
Show Gist options
  • Save andrewsmedina/1072650 to your computer and use it in GitHub Desktop.
Save andrewsmedina/1072650 to your computer and use it in GitHub Desktop.
stub in python with ludibrio
>>> def agora():
... return datetime.now()
...
>>> from ludibrio import Stub
>>> with Stub() as datetime:
... from datetime import datetime
... datetime.now() >> 'foo'
...
>>> agora()
'foo'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment