Skip to content

Instantly share code, notes, and snippets.

@jstrassburg
Last active December 11, 2015 09:58
Show Gist options
  • Save jstrassburg/4583405 to your computer and use it in GitHub Desktop.
Save jstrassburg/4583405 to your computer and use it in GitHub Desktop.
Python unittest Test Case
import unittest
class testSomething(unittest.TestCase):
def testSomethingSpecific(self):
self.assertTrue(True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment