test_conf.py
changeset 7 0f9cae2d7147
parent 6 57e8168ba8c4
child 8 46d36bc33086
--- a/test_conf.py	Sun Jul 12 00:43:36 2009 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-"""
-    Test conf.py
-"""
-
-import unittest
-
-class _TestConfBase (unittest.TestCase) :
-    def assert_obj (self, obj, lines) :
-        """
-            Formats the given conf.Object and compares the output against the given lines
-        """
-        
-        for obj_line, line in zip(obj.fmt_lines(), lines) :
-            self.assertEqual(obj_line, line)
-
-