~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_store.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-08 06:38:32 UTC
  • mfrom: (1685.1.81 encoding)
  • Revision ID: pqm@pqm.ubuntu.com-20060608063832-74b46cf8fdd4567a
(jam,mbp,wvh) Lots of updates to unicode,url,and encoding support

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
class TestCompressedTextStore(TestCaseInTempDir, TestStores):
82
82
 
83
83
    def get_store(self, path=u'.'):
84
 
        t = LocalTransport(path)
 
84
        t = transport.get_transport(path)
85
85
        return TextStore(t, compressed=True)
86
86
 
87
87
    def test_total_size(self):
138
138
class TestTextStore(TestCaseInTempDir, TestStores):
139
139
 
140
140
    def get_store(self, path=u'.'):
141
 
        t = LocalTransport(path)
 
141
        t = transport.get_transport(path)
142
142
        return TextStore(t, compressed=False)
143
143
 
144
144
    def test_total_size(self):
156
156
class TestMixedTextStore(TestCaseInTempDir, TestStores):
157
157
 
158
158
    def get_store(self, path=u'.', compressed=True):
159
 
        t = LocalTransport(path)
 
159
        t = transport.get_transport(path)
160
160
        return TextStore(t, compressed=compressed)
161
161
 
162
162
    def test_get_mixed(self):