Created
March 22, 2017 13:09
-
-
Save mrdrozdov/63310314bbcda12b1d798337ee834e2e to your computer and use it in GitHub Desktop.
test case
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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