Skip to content

Instantly share code, notes, and snippets.

@luanfonceca
Last active December 29, 2015 07:29
Show Gist options
  • Save luanfonceca/7636718 to your computer and use it in GitHub Desktop.
Save luanfonceca/7636718 to your computer and use it in GitHub Desktop.
import unittest
class SimplestCase(unittest.TestCase):
def test_simple(self):
self.assertEqual(1 + 1, 2)
if __name__ == '__main__':
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment