Skip to content

Instantly share code, notes, and snippets.

@brandonsavage
Created February 17, 2015 02:19
Show Gist options
  • Save brandonsavage/8d82f9d173e3a02ecb80 to your computer and use it in GitHub Desktop.
Save brandonsavage/8d82f9d173e3a02ecb80 to your computer and use it in GitHub Desktop.
import unittest
class MyUnitTest(unittest.TestCase):
def testAddition(self):
a = 1 + 1
self.assertEqual(2, a)
if __name__ == '__main__':
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment