/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/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2007-04-20 15:05:22 UTC
  • mfrom: (2428 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2438.
  • Revision ID: john@arbash-meinel.com-20070420150522-lpbhxv739kynwyep
[merge] bzr.dev 2428

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
                     'bzrlib.tests.blackbox.test_bound_branches',
48
48
                     'bzrlib.tests.blackbox.test_bundle',
49
49
                     'bzrlib.tests.blackbox.test_cat',
 
50
                     'bzrlib.tests.blackbox.test_cat_revision',
50
51
                     'bzrlib.tests.blackbox.test_checkout',
51
52
                     'bzrlib.tests.blackbox.test_command_encoding',
52
53
                     'bzrlib.tests.blackbox.test_commit',
123
124
            return self.run_bzr_captured(args, retcode=retcode)[0]
124
125
        else:
125
126
            return self.run_bzr_captured(args, retcode=retcode)
 
127
 
 
128
    def check_output(self, output, *args):
 
129
        """Verify that the expected output matches what bzr says.
 
130
 
 
131
        The output is supplied first, so that you can supply a variable
 
132
        number of arguments to bzr.
 
133
        """
 
134
        self.assertEquals(self.run_bzr_captured(args)[0], output)