Skip to content

Instantly share code, notes, and snippets.

@prendradjaja
Last active April 26, 2017 23:58
Show Gist options
  • Save prendradjaja/35a2816c0b5750ffc91cc091e760dc00 to your computer and use it in GitHub Desktop.
Save prendradjaja/35a2816c0b5750ffc91cc091e760dc00 to your computer and use it in GitHub Desktop.
Python unit test boilerplate (with tabs)
# 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()
@prendradjaja
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment