~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-09-05 00:16:48 UTC
  • mfrom: (2776.1.6 commit)
  • Revision ID: pqm@pqm.ubuntu.com-20070905001648-0iigag4tq1u8mywn
(robertc) Deprecated find_previous_heads and add Graph.heads detangling some of the inventory related commit code. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2614
2614
        return self.__class__.__name__
2615
2615
 
2616
2616
 
 
2617
class _SymlinkFeature(Feature):
 
2618
 
 
2619
    def _probe(self):
 
2620
        return osutils.has_symlinks()
 
2621
 
 
2622
    def feature_name(self):
 
2623
        return 'symlinks'
 
2624
 
 
2625
SymlinkFeature = _SymlinkFeature()
 
2626
 
 
2627
 
2617
2628
class TestScenarioApplier(object):
2618
2629
    """A tool to apply scenarios to tests."""
2619
2630