PyUT: Add all the lsb_release.py functions as NotImplemented tests.
authorDidier Raboud <odyx@debian.org>
Fri, 4 May 2012 12:42:06 +0000 (14:42 +0200)
committerDidier Raboud <odyx@debian.org>
Mon, 7 May 2012 19:04:24 +0000 (21:04 +0200)
test/test_lsb_release.py

index 2ae7a6832e137a28926783f399965351bd066f4d..5aa821d05d66061394f58caa0992d1f1d22bda67 100644 (file)
@@ -19,5 +19,24 @@ class TestLSBRelease(unittest.TestCase):
                        self.assertEqual(lr.lookup_codename(rno + '.' + str(random.randint(0,9)),badDefault),cdn,'Release name `' + rno + '.*` is not recognized.')
                        self.assertEqual(lr.lookup_codename('inexistent_release' + str(random.randint(0,9)),badDefault),badDefault,'Default release codename is not accepted.')
 
+       def test_valid_lsb_versions(self):
+               raise NotImplementedError()
+       def test_check_modules_installed(self):
+               raise NotImplementedError()
+       def test_parse_policy_line(self):
+               raise NotImplementedError()
+       def test_compare_release(self):
+               raise NotImplementedError()
+       def test_parse_apt_policy(self):
+               raise NotImplementedError()
+       def test_guess_release_from_apt(self):
+               raise NotImplementedError()
+       def test_guess_debian_release(self):
+               raise NotImplementedError()
+       def test_get_lsb_information(self):
+               raise NotImplementedError()
+       def test_get_distro_information(self):
+               raise NotImplementedError()
+
 if __name__ == '__main__':
        unittest.main()