/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

merge bzr.dev r3564

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    def test_check_one_commit_tree(self):
33
33
        tree = self.make_branch_and_tree('.')
34
34
        tree.commit('hallelujah')
35
 
        self.run_bzr('check')
 
35
        out, err = self.run_bzr('check')
 
36
        self.assertContainsRe(err, r"^Checking working tree at '.*'\.\n"
 
37
                                   r"Checking repository at '.*'\.\n"
 
38
                                   r"checked repository.*\n"
 
39
                                   r"     1 revisions\n"
 
40
                                   r"     0 file-ids\n"
 
41
                                   r"     0 unique file texts\n"
 
42
                                   r"     0 repeated file texts\n"
 
43
                                   r"     0 unreferenced text versions\n"
 
44
                                   r"Checking branch at '.*'\.\n"
 
45
                                   r"checked branch.*\n$")