Skip to content

Instantly share code, notes, and snippets.

@stnbu
Created December 19, 2014 08:47
Show Gist options
  • Save stnbu/44bef57fdd77dbd0b2ee to your computer and use it in GitHub Desktop.
Save stnbu/44bef57fdd77dbd0b2ee to your computer and use it in GitHub Desktop.
A tester tester. A python module that looks like a test to the more popular python testing tools (pytest, nose, unittest, maybe more.) which contains one test (that passes.)
# -*- coding: utf-8 -*-
"""
A test module that looks like a test to the more popular python testing tools (pytest, nose, unittest, maybe more.) which
contains one test (that passes.)
"""
import unittest
class TestAnything(unittest.TestCase):
def setUp(self):
pass
def test_testers(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