view tests/unit.py @ 15:0df4bfdc2c96

make --help work
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 26 Mar 2012 10:41:38 -0700
parents e00afe2c83bf
children cadc9514f60a
line wrap: on
line source

#!/usr/bin/env python

"""
unit tests
"""

import os
import sys
import unittest

import example # example configuration to test

# globals
here = os.path.dirname(os.path.abspath(__file__))

class configurationUnitTest(unittest.TestCase):

    def test_configuration(self):
        

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