~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_branch/test_sprout.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-07-25 03:36:18 UTC
  • mfrom: (6034.2.4 test-feature-cleanup)
  • Revision ID: pqm@pqm.ubuntu.com-20110725033618-n5g9qg6iwyz2dqzw
(mbp) move test feature dependencies into test.features (Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    revision as _mod_revision,
26
26
    tests,
27
27
    )
 
28
from bzrlib.tests import (
 
29
    features,
 
30
    )
28
31
from bzrlib.tests.per_branch import TestCaseWithBranch
29
32
 
30
33
 
151
154
        # Since the trigger function seems to be set_parent_trees, there exists
152
155
        # also a similar test, with name test_unicode_symlink, in class
153
156
        # TestSetParents at file per_workingtree/test_parents.py
154
 
        self.requireFeature(tests.SymlinkFeature)
155
 
        self.requireFeature(tests.UnicodeFilenameFeature)
 
157
        self.requireFeature(features.SymlinkFeature)
 
158
        self.requireFeature(features.UnicodeFilenameFeature)
156
159
 
157
160
        tree = self.make_branch_and_tree('tree1')
158
161