From: Didier Raboud Date: Sun, 6 May 2012 11:19:10 +0000 (+0200) Subject: PyUT: Skip not implemented tests. X-Git-Tag: archive/raspbian/10.2018112800+rpi1^2~132^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=913e6bd26fd3fe528d2410e8a449b58297f4a853;p=lsb.git PyUT: Skip not implemented tests. --- 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()