Skip to content

Instantly share code, notes, and snippets.

@namgivu
Created October 21, 2019 05:39
Show Gist options
  • Save namgivu/d91dd3b2418ec8260e1b15b8bb2f1951 to your computer and use it in GitHub Desktop.
Save namgivu/d91dd3b2418ec8260e1b15b8bb2f1951 to your computer and use it in GitHub Desktop.
import unittest
def setUpModule(): pass # nothing here for now
def tearDownModule(): pass # nothing here for now
class Test(unittest.TestCase):
def setUp(self): pass # nothing here for now
def tearDown(self): pass # nothing here for now
def test(self):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment