/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/test_export.py

  • Committer: Jelmer Vernooij
  • Date: 2009-07-23 18:36:54 UTC
  • mto: This revision was merged to the branch mainline in revision 4564.
  • Revision ID: jelmer@samba.org-20090723183654-adgkw9azmfj111wy
Use self.requireFeature(tests.SymlinkFeature) per John's review.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
        self.failIfExists('target/a/c')
37
37
 
38
38
    def test_dir_export_symlink(self):
39
 
        if osutils.has_symlinks() is False:
40
 
            return
 
39
        self.requireFeature(tests.SymlinkFeature)
41
40
        wt = self.make_branch_and_tree('.')
42
41
        os.symlink('source', 'link')
43
42
        wt.add(['link'])