summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
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()