~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bad_files.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-10-25 08:29:08 UTC
  • mfrom: (2940.1.2 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20071025082908-abn3kunrb2ivdvth
renaming of experimental pack formats to include knitpack in their name (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    errors,
26
26
    )
27
27
from bzrlib.status import show_tree_status
28
 
from bzrlib.tests import OsFifoFeature, TestCaseWithTransport
 
28
from bzrlib.tests import TestCaseWithTransport
29
29
 
30
30
 
31
31
def verify_status(tester, tree, value):
40
40
 
41
41
    def test_bad_files(self):
42
42
        """Test that bzr will ignore files it doesn't like"""
43
 
        self.requireFeature(OsFifoFeature)
 
43
        if getattr(os, 'mkfifo', None) is None:
 
44
            # TODO: Ultimately this should be TestSkipped
 
45
            # or PlatformDeficiency
 
46
            return
44
47
 
45
48
        wt = self.make_branch_and_tree('.')
46
49
        b = wt.branch