~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_non_ascii.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-07 22:29:38 UTC
  • mfrom: (1987.1.4 test_home_and_work)
  • Revision ID: pqm@pqm.ubuntu.com-20060907222938-ca415c1efe88a35c
(jam) separate out test working from test home

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import sys
21
21
import os
22
22
 
23
 
from bzrlib import ignores, osutils, urlutils
 
23
from bzrlib import osutils, urlutils
24
24
import bzrlib
25
25
from bzrlib.tests import TestCaseWithTransport, TestSkipped
26
26
from bzrlib.trace import mutter, note
471
471
    def test_ignore(self):
472
472
        bzr = self.run_bzr_decode
473
473
 
474
 
        ignores._set_user_ignores(['./.bazaar'])
475
474
        fname2 = self.info['filename'] + '2.txt'
476
475
        open(fname2, 'wb').write('ignored\n')
477
476