~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Samuel Bronson
  • Date: 2012-08-30 20:36:18 UTC
  • mto: (6015.57.3 2.4)
  • mto: This revision was merged to the branch mainline in revision 6558.
  • Revision ID: naesten@gmail.com-20120830203618-y2dzw91nqpvpgxvx
Update INSTALL for switch to Python 2.6 and up.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
from bzrlib import osutils
23
23
from bzrlib import tests
24
24
from bzrlib.tests.per_tree import TestCaseWithTree
25
 
from bzrlib.tests import (
26
 
    features,
27
 
    )
28
25
 
29
26
 
30
27
class ExportTest(object):
40
37
        export(tree_a, 'output', self.exporter)
41
38
 
42
39
    def prepare_symlink_export(self):
43
 
        self.requireFeature(features.SymlinkFeature)
 
40
        self.requireFeature(tests.SymlinkFeature)
44
41
        work_a = self.make_branch_and_tree('wta')
45
42
        os.symlink('target', 'wta/link')
46
43
        work_a.add('link', 'link-id')