diff options
Diffstat (limited to 'tests/archive_tests.py')
-rw-r--r-- | tests/archive_tests.py | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/tests/archive_tests.py b/tests/archive_tests.py index 76bd912e..b4dd8d0f 100644 --- a/tests/archive_tests.py +++ b/tests/archive_tests.py @@ -94,21 +94,13 @@ class TarFileArchiveTest(unittest.TestCase): self.assertEquals('this is my content', afp.read()) def test_rewrite_file(self): - """Test that re-writing a file does not modify the content. - - In sos we do not have a use for overwriting archive content - in-place (it is an error if different plugins attempt to - store different content at the same path). - - We do not enforce the content check at runtime since it - would be prohibitively costly: instead just verify in the - unit suite that the original content is preserved. + """Test that re-writing a file with add_string() modifies the content. """ self.tf.add_string('this is my content', 'tests/string_test.txt') self.tf.add_string('this is my new content', 'tests/string_test.txt') afp = self.tf.open_file('tests/string_test.txt') - self.assertEquals('this is my content', afp.read()) + self.assertEquals('this is my new content', afp.read()) def test_make_link(self): self.tf.add_file('tests/ziptest') |