~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_status.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:
45
45
        wt = self.make_branch_and_tree('.')
46
46
        b = wt.branch
47
47
 
48
 
        ignores.set_user_ignores(['./.bazaar'])
 
48
        ignores._set_user_ignores(['./.bazaar'])
49
49
 
50
50
        # status with nothing
51
51
        tof = StringIO()
70
70
        wt = self.make_branch_and_tree('.')
71
71
        b = wt.branch
72
72
 
73
 
        ignores.set_user_ignores(['./.bazaar'])
 
73
        ignores._set_user_ignores(['./.bazaar'])
74
74
 
75
75
        tof = StringIO()
76
76
        self.build_tree(['hello.c', 'bye.c'])
142
142
        wt = self.make_branch_and_tree('.')
143
143
        b = wt.branch
144
144
 
145
 
        ignores.set_user_ignores(['./.bazaar'])
 
145
        ignores._set_user_ignores(['./.bazaar'])
146
146
 
147
147
        self.build_tree(['directory/','directory/hello.c', 'bye.c','test.c','dir2/'])
148
148
        wt.add('directory')
204
204
class TestStatus(TestCaseWithTransport):
205
205
 
206
206
    def test_status(self):
207
 
        ignores.set_user_ignores(['./.bazaar'])
 
207
        ignores._set_user_ignores(['./.bazaar'])
208
208
 
209
209
        self.run_bzr("init")
210
210
        self.build_tree(['hello.txt'])