From 2784c97abe9cb4d5dafeaa78f141c9891edccb66 Mon Sep 17 00:00:00 2001 From: Razvan Deaconescu Date: Sat, 27 Aug 2011 08:10:52 +0300 Subject: [PATCH] ppf/new: Add test module for parsing.py. --- ppf/new/tests/test_parsing.py | 36 +++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 ppf/new/tests/test_parsing.py diff --git a/ppf/new/tests/test_parsing.py b/ppf/new/tests/test_parsing.py new file mode 100644 index 0000000..fdf8f4a --- /dev/null +++ b/ppf/new/tests/test_parsing.py @@ -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() -- 2.20.1