~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/revisionstore_implementations/test_all.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-04-09 23:35:55 UTC
  • mfrom: (3316.2.15 api-cleanup)
  • Revision ID: pqm@pqm.ubuntu.com-20080409233555-n26cmi0y1hb98tf6
(robertc) Many VersionedFile api cleanups and deprecations. Some
        incompatible changes included (see NEWS). (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
        super(TestAll, self).setUp()
38
38
        self.store = self.store_factory.create(self.get_url('.'))
39
39
        self.transaction = PassThroughTransaction()
 
40
        self.store.get_scope = self.get_transaction
 
41
 
 
42
    def get_transaction(self):
 
43
        return self.transaction
40
44
 
41
45
    def test_add_has_get(self):
42
46
        rev = self.add_sample_rev()