Skip to content

Instantly share code, notes, and snippets.

@prendradjaja
Last active April 16, 2018 17:56
Show Gist options
  • Save prendradjaja/a35b0dc59fb137dc71ef7703a330ab02 to your computer and use it in GitHub Desktop.
Save prendradjaja/a35b0dc59fb137dc71ef7703a330ab02 to your computer and use it in GitHub Desktop.
Python unit test boilerplate (with spaces)
# 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()
@prendradjaja
Copy link
Author

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