1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#!/usr/bin/python3
import unittest
import initdutils as iu
class TestInitdUtils(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()
|