/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_tuned_gzip.py

  • Committer: Parth Malwankar
  • Date: 2010-09-17 15:15:34 UTC
  • mto: This revision was merged to the branch mainline in revision 5444.
  • Revision ID: parth.malwankar@gmail.com-20100917151534-587xpe9adve1jhw3
used active_shelves instead of creating a new function for listing shelves

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
        # and it should be new member time in the stream.
87
87
        self.failUnless(myfile._new_member)
88
88
 
 
89
    def test_negative_crc(self):
 
90
        """Content with a negative crc should not break when written"""
 
91
        sio = StringIO()
 
92
        gfile = tuned_gzip.GzipFile(mode="w", fileobj=sio)
 
93
        gfile.write("\xFF")
 
94
        gfile.close()
 
95
        self.assertEqual(gfile.crc & 0xFFFFFFFFL, 0xFF000000L)
 
96
        self.assertEqual(sio.getvalue()[-8:-4], "\x00\x00\x00\xFF")
 
97
 
89
98
 
90
99
class TestToGzip(TestCase):
91
100