~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bad_files.py

Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
"""Tests being able to ignore mad filetypes.
19
19
"""
20
20
 
21
 
from bzrlib import ignores
22
21
from bzrlib.tests import TestCaseWithTransport
23
22
from bzrlib.errors import BadFileKindError
24
23
import os
63
62
            # or PlatformDeficiency
64
63
            return
65
64
 
66
 
        # Ignore the .bazaar/ home directory that is created
67
 
        ignores._set_user_ignores(['./.bazaar'])
68
 
 
69
65
        # status with nothing
70
66
        verify_status(self, wt, [])
71
67