~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2011-11-24 15:48:29 UTC
  • mfrom: (6289 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6337.
  • Revision ID: v.ladeuil+lp@free.fr-20111124154829-avowjpsxdl8yp2vz
merge trunk resolving conflicts

Show diffs side-by-side

added added

removed removed

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