/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/tree_implementations/test_test_trees.py

  • Committer: Jelmer Vernooij
  • Date: 2009-05-28 16:04:39 UTC
  • mfrom: (4387 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4405.
  • Revision ID: jelmer@samba.org-20090528160439-4z0xlrk5nejobm7q
Merge bzr.dev.

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)