Last active
April 16, 2018 17:56
-
-
Save prendradjaja/a35b0dc59fb137dc71ef7703a330ab02 to your computer and use it in GitHub Desktop.
Python unit test boilerplate (with spaces)
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/35a2816c0b5750ffc91cc091e760dc00 | |
# for version with tabs | |
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/35a2816c0b5750ffc91cc091e760dc00
for version with tabs