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

  • Committer: Alexander Belchenko
  • Date: 2007-09-05 08:18:57 UTC
  • mfrom: (2799 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2800.
  • Revision ID: bialix@ukr.net-20070905081857-me1osc2lpuzq6ur1
merge bzr.dev

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