view examples/python-templates/unittest_template.py @ 253:668b0e1f5ce0

introduce failing test: the first step to passing
author Jeff Hammel <k0scist@gmail.com>
date Sat, 13 May 2017 18:36:01 -0700
parents 386a44a52139
children
line wrap: on
line source

#!/usr/bin/env python                                                           

"""                                                                             
"""

class TestAddonBackup(unittest.TestCase):
    pass

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