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 ++++++++++ tests/__init__.py | 0 2 files changed, 10 insertions(+) create mode 100644 tests/TestConfigLoaders.py create mode 100644 tests/__init__.py (limited to 'tests') 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() diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3