~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_tuned_gzip.py

  • Committer: Parth Malwankar
  • Date: 2010-07-14 08:53:58 UTC
  • mto: (5050.3.7 2.2)
  • mto: This revision was merged to the branch mainline in revision 5365.
  • Revision ID: parth.malwankar@gmail.com-20100714085358-6un4ny0cn908spkq
better error message for RecursiveBind

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
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
 
 
98
89
 
99
90
class TestToGzip(TestCase):
100
91