Skip to content

Instantly share code, notes, and snippets.

@mrdrozdov
Created March 22, 2017 13:09
Show Gist options
  • Save mrdrozdov/63310314bbcda12b1d798337ee834e2e to your computer and use it in GitHub Desktop.
Save mrdrozdov/63310314bbcda12b1d798337ee834e2e to your computer and use it in GitHub Desktop.
test case
import unittest
class MyTestCase(unittest.TestCase):
def test_basic_1(self):
assert True
def test_basic_1(self):
assert False
if __name__ == '__main__':
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment