view examples/python-templates/unittest_template.py @ 268:64979cfff465 default tip

some py3 fixes
author Jeff Hammel <k0scist@gmail.com>
date Tue, 29 May 2018 15:28:41 -0700
parents 386a44a52139
children
line wrap: on
line source

#!/usr/bin/env python                                                           

"""                                                                             
"""

class TestAddonBackup(unittest.TestCase):
    pass

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