~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/tree_implementations/test_test_trees.py

  • Committer: Robert J. Tanner
  • Date: 2009-04-20 08:37:32 UTC
  • mfrom: (4299 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4300.
  • Revision ID: tanner@real-time.com-20090420083732-bzx919oo7wpmqc2u
[merge] 1.14rc2 back into bzr.dev (Bob Tanner)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Tests for the test trees used by the tree_implementations tests."""
18
18
 
19
 
from bzrlib.tests import SymlinkFeature
20
 
from bzrlib.tests.tree_implementations import TestCaseWithTree
21
 
 
22
 
 
23
 
class TestTreeShapes(TestCaseWithTree):
 
19
from bzrlib import tests
 
20
from bzrlib.tests import tree_implementations
 
21
 
 
22
 
 
23
class TestTreeShapes(tree_implementations.TestCaseWithTree):
24
24
 
25
25
    def test_empty_tree_no_parents(self):
26
26
        tree = self.make_branch_and_tree('.')
147
147
        # currently this test tree requires unicode. It might be good
148
148
        # to have it simply stop having the single unicode file in it
149
149
        # when dealing with a non-unicode filesystem.
150
 
        self.requireFeature(SymlinkFeature)
 
150
        self.requireFeature(tests.SymlinkFeature)
151
151
        tree = self.get_tree_with_subdirs_and_all_content_types()
152
152
        tree.lock_read()
153
153
        self.addCleanup(tree.unlock)