ppf/new: Add test module for parsing.py.
authorRazvan Deaconescu <razvan.deaconescu@cs.pub.ro>
Sat, 27 Aug 2011 05:10:52 +0000 (08:10 +0300)
committerRazvan Deaconescu <razvan.deaconescu@cs.pub.ro>
Sat, 27 Aug 2011 06:16:33 +0000 (09:16 +0300)
ppf/new/tests/test_parsing.py [new file with mode: 0644]

diff --git a/ppf/new/tests/test_parsing.py b/ppf/new/tests/test_parsing.py
new file mode 100644 (file)
index 0000000..fdf8f4a
--- /dev/null
@@ -0,0 +1,36 @@
+"""
+Test suite for parsing.py. Uses unittest module.
+
+2011, Razvan Deaconescu, razvan.deaconescu@cs.pub.ro
+"""
+
+import unittest
+import os
+import os.path
+import shutil
+import sys
+
+import parsing
+
+class LibtorrentLogParserTest(unittest.TestCase):
+    """Test suite for LibtorrentLogParser class in parsing.py."""
+
+    def setUp(self):
+        pass
+
+    def tearDown(self):
+        pass
+
+
+class TriblerLogParserTest(unittest.TestCase):
+    """Test suite for TriblerLogParser class in parsing.py."""
+
+    def setUp(self):
+        pass
+
+    def tearDown(self):
+        pass
+
+
+if __name__ == "__main__":
+    unittest.main()