~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_tuned_gzip.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-09 14:43:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1912.
  • Revision ID: john@arbash-meinel.com-20060809144327-d604af2edf646794
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
import zlib
26
26
 
27
27
 
28
 
from bzrlib.tuned_gzip import *
 
28
from bzrlib import tuned_gzip
29
29
 
30
30
 
31
31
class FakeDecompress(object):
74
74
        # read more bytes if there is less than 8 bytes (the 
75
75
        # gzip trailer) unread.
76
76
        stream = StringIO('\0\0\0\0\0\0\0\0')
77
 
        myfile = GzipFile(fileobj=stream)
 
77
        myfile = tuned_gzip.GzipFile(fileobj=stream)
78
78
        # disable the _new_member check, we are microtesting.
79
79
        myfile._new_member = False
80
80
        myfile.crc = zlib.crc32('')