File: test_initdutils.py

package info (click to toggle)
lsb 11.6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 236 kB
  • sloc: python: 1,162; sh: 143; perl: 6; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 850 bytes parent folder | download | duplicates (4)
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()