From 9e1e0f0c0b6835cc3755bbaa6a364475133ce848 Mon Sep 17 00:00:00 2001 From: rcoh Date: Sat, 25 Dec 2010 14:05:28 -0500 Subject: added test directory for unittests and an example skeleton unit test. WRITE TESTS FOR STUFF YOU WRITE. PLZ. RCOH --- tests/TestConfigLoaders.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/TestConfigLoaders.py (limited to 'tests/TestConfigLoaders.py') diff --git a/tests/TestConfigLoaders.py b/tests/TestConfigLoaders.py new file mode 100644 index 0000000..6ea4f59 --- /dev/null +++ b/tests/TestConfigLoaders.py @@ -0,0 +1,10 @@ +import unittest +class TestConfigLoaders(unittest.TestCase): + def setUp(self): + pass + def tearDown(self): + pass + def test_something(self): + pass +if __name__ == '__main__': + unittest.main() -- cgit v1.2.3