Last active
November 2, 2016 14:08
-
-
Save grimley517/a937f95d6d883c1f91ca to your computer and use it in GitHub Desktop.
unittest outline
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 task1.py | |
import unittest | |
class TestSequenceFunctions(unittest.TestCase): | |
def test1(self): | |
pass | |
if __name__ == '__main__': | |
unittest.main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment