Skip to content

Instantly share code, notes, and snippets.

@mcho421-snippets
Created November 6, 2012 20:28
Show Gist options
  • Save mcho421-snippets/4027304 to your computer and use it in GitHub Desktop.
Save mcho421-snippets/4027304 to your computer and use it in GitHub Desktop.
doc test example
def test():
"""
use -v flag to be more verbose
>>> test()
hello world
"""
print("hello world")
if __name__ == "__main__":
import doctest
doctest.testmod()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment