summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDidier Raboud <odyx@debian.org>2012-05-06 13:19:10 +0200
committerDidier Raboud <odyx@debian.org>2012-05-07 21:04:24 +0200
commit913e6bd26fd3fe528d2410e8a449b58297f4a853 (patch)
tree907b9a420ec4207841f3d34c14f1ceaf07e8d870 /test
parenta44b22d5c000e5be16874bcc24d2293cc54b057e (diff)
PyUT: Skip not implemented tests.
Diffstat (limited to 'test')
-rw-r--r--test/test_lsb_release.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_lsb_release.py b/test/test_lsb_release.py
index c22a3db..8a1dfb8 100644
--- a/test/test_lsb_release.py
+++ b/test/test_lsb_release.py
@@ -57,20 +57,28 @@ class TestLSBRelease(unittest.TestCase):
[elem for elem in in_versions if int(float(elem)*10) <= int(float(test_v)*10)],
assert_text)
+ @unittest.skip('Test not implemented.')
def test_check_modules_installed(self):
raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
def test_parse_policy_line(self):
raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
def test_compare_release(self):
raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
def test_parse_apt_policy(self):
raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
def test_guess_release_from_apt(self):
raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
def test_guess_debian_release(self):
raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
def test_get_lsb_information(self):
raise NotImplementedError()
+ @unittest.skip('Test not implemented.')
def test_get_distro_information(self):
raise NotImplementedError()