Last active
April 26, 2017 23:58
-
-
Save prendradjaja/35a2816c0b5750ffc91cc091e760dc00 to your computer and use it in GitHub Desktop.
Python unit test boilerplate (with tabs)
This file contains 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
# https://gist.github.com/prendradjaja/a35b0dc59fb137dc71ef7703a330ab02 | |
# for version with spaces | |
import unittest | |
class TestSomething(unittest.TestCase): | |
def test_something(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
https://gist.github.com/prendradjaja/a35b0dc59fb137dc71ef7703a330ab02
for version with spaces