~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: John Arbash Meinel
  • Date: 2006-07-21 04:02:14 UTC
  • mto: This revision was merged to the branch mainline in revision 1877.
  • Revision ID: john@arbash-meinel.com-20060721040214-9db86450785a5c3e
Make set_user_ignores a private function, and update the doc string to recommend it isn't used.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
        # is_ignored() will now create the user global ignore file
49
49
        # if it doesn't exist, so make sure we ignore it in our tests
50
 
        ignores.set_user_ignores(['*.tmp', './.bazaar'])
 
50
        ignores._set_user_ignores(['*.tmp', './.bazaar'])
51
51
 
52
52
        self.build_tree_contents(
53
53
            [('foo.tmp', '.tmp files are ignored by default'),