view examples/python-templates/unittest_template.py @ 256:f10f5beb8ad1

pytest now actually runs the tests
author Jeff Hammel <k0scist@gmail.com>
date Sat, 27 May 2017 09:37:15 -0700
parents 386a44a52139
children
line wrap: on
line source

#!/usr/bin/env python                                                           

"""                                                                             
"""

class TestAddonBackup(unittest.TestCase):
    pass

if __name__ == '__main__':
    unittest.main()