From 793fe6f7ea1ddaa19451c82c5f027510ac669f60 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Wed, 3 Mar 2010 20:26:43 +0100 Subject: [PATCH] Add comment about RPM test; remove unneded test for 7z program. --- tests/test_archives.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_archives.py b/tests/test_archives.py index 9ebccea..ce2e3f6 100644 --- a/tests/test_archives.py +++ b/tests/test_archives.py @@ -166,7 +166,6 @@ class TestArchives (ArchiveTest): self.archive_test('t.rpm') self.archive_test('t.deb') - @needs_program('7z') @needs_codec('7z', 'rar') def test_p7zip_rar (self): # only succeeds with the rar module for 7z installed @@ -208,7 +207,9 @@ class TestArchives (ArchiveTest): def test_rpm (self): self.program = 'rpm' self.archive_list('t.rpm') - # the rpm test fails on non-rpm system with missing dependencies + # The rpm test fails on non-rpm system with missing dependencies. + # I am too lazy to build a tiny rpm with one file + # and no dependency. #self.archive_test('t.rpm') @needs_program('rpm2cpio')