view tests/unit.py @ 11:e00afe2c83bf

stubbing configuration parser
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 26 Mar 2012 09:45:06 -0700
parents b3023ba3c9ca
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()