~lifeless/bzrtools/trunk

« back to all changes in this revision

Viewing changes to tests/test_link_tree.py

  • Committer: Robert Collins
  • Date: 2008-07-08 04:11:21 UTC
  • mfrom: (623.1.33 bzrtools)
  • Revision ID: robertc@robertcollins.net-20080708041121-lo0k7os2y03uclt2
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
import os
18
18
 
19
19
from bzrlib.transform import TreeTransform
20
 
from bzrlib.tests import TestCaseWithTransport
 
20
from bzrlib.tests import TestCaseWithTransport, HardlinkFeature
21
21
 
22
22
from bzrlib.plugins.bzrtools.link_tree import link_tree
23
23
 
24
24
 
25
25
class TestLinkTreeBase(object):
26
26
 
 
27
    _test_needs_features = [HardlinkFeature]
 
28
 
27
29
    def setUp(self):
28
30
        TestCaseWithTransport.setUp(self)
29
31
        self.parent_tree = self.make_branch_and_tree('parent')