/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/per_workingtree/test_revision_tree.py

  • Committer: Martin Pool
  • Date: 2009-07-10 07:14:02 UTC
  • mto: (4525.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4526.
  • Revision ID: mbp@sourcefrog.net-20090710071402-dga5lhvdup5jeere
Rename remaining *_implementations tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Tests for WorkingTree.revision_tree.
18
18
 
19
19
These tests are in addition to the tests from
20
 
tree_implementations.test_revision_tree which cover the behaviour expected from
 
20
per_tree.test_revision_tree which cover the behaviour expected from
21
21
all Trees. WorkingTrees implement the revision_tree api to allow access to
22
22
cached data, but we don't require that all WorkingTrees have such a cache,
23
23
so these tests are testing that when there is a cache, it performs correctly.
24
24
"""
25
25
 
26
26
from bzrlib import errors
27
 
from bzrlib.tests.workingtree_implementations import TestCaseWithWorkingTree
 
27
from bzrlib.tests.per_workingtree import TestCaseWithWorkingTree
28
28
 
29
29
 
30
30
class TestRevisionTree(TestCaseWithWorkingTree):