summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDidier Raboud <odyx@debian.org>2012-05-06 13:25:55 +0200
committerDidier Raboud <odyx@debian.org>2012-05-07 21:04:24 +0200
commit1544042bd94b38288681b2c79a7f10672a52a19c (patch)
tree6391db55f18e83a5f13af633981b785d06a77fb6 /test
parent913e6bd26fd3fe528d2410e8a449b58297f4a853 (diff)
PyUT: Add template tests for initdutils.py
Diffstat (limited to 'test')
-rw-r--r--test/test_initdutils.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/test_initdutils.py b/test/test_initdutils.py
new file mode 100644
index 0000000..b422a68
--- /dev/null
+++ b/test/test_initdutils.py
@@ -0,0 +1,31 @@
+#!/usr/bin/python
+import unittest
+
+import initdutils as iu
+
+class TestInitdUtilse(unittest.TestCase):
+
+ @unittest.skip('Test not implemented.')
+ def test_scan_initfile():
+ raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
+ def test_save_facilities():
+ raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
+ def test_load_facilities():
+ raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
+ def test_load_depends():
+ raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
+ def test_save_depends():
+ raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
+ def test_load_lsbinstall_info():
+ raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
+ def test_save_lsbinstall_info():
+ raise NotImplementedError()
+
+if __name__ == '__main__':
+ unittest.main()