From 913e6bd26fd3fe528d2410e8a449b58297f4a853 Mon Sep 17 00:00:00 2001 From: Didier Raboud Date: Sun, 6 May 2012 13:19:10 +0200 Subject: [PATCH] PyUT: Skip not implemented tests. --- test/test_lsb_release.py | 8 ++++++++ 1 file changed, 8 insertions(+) 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() -- 2.30.2