~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bad_files.py

  • Committer: Aaron Bentley
  • Date: 2007-08-13 14:00:59 UTC
  • mto: (2681.5.3 bzr-mail)
  • mto: This revision was merged to the branch mainline in revision 2736.
  • Revision ID: abentley@panoramicfeedback.com-20070813140059-04k01bfueilqvg10
Update text, fix whitespace issues

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007, 2009, 2011 Canonical Ltd
 
1
# Copyright (C) 2005, 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
 
18
18
"""Tests being able to ignore bad filetypes."""
21
21
import os
22
22
 
23
23
from bzrlib import (
 
24
    add,
24
25
    errors,
25
26
    )
26
27
from bzrlib.status import show_tree_status
27
28
from bzrlib.tests import TestCaseWithTransport
28
 
from bzrlib.tests.features import (
29
 
    OsFifoFeature,
30
 
    )
31
29
 
32
30
 
33
31
def verify_status(tester, tree, value):
42
40
 
43
41
    def test_bad_files(self):
44
42
        """Test that bzr will ignore files it doesn't like"""
45
 
        self.requireFeature(OsFifoFeature)
 
43
        if getattr(os, 'mkfifo', None) is None:
 
44
            # TODO: Ultimately this should be TestSkipped
 
45
            # or PlatformDeficiency
 
46
            return
46
47
 
47
48
        wt = self.make_branch_and_tree('.')
48
49
        b = wt.branch