~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Ian Clatworthy
  • Date: 2007-08-14 03:59:22 UTC
  • mto: (2733.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 2734.
  • Revision ID: ian.clatworthy@internode.on.net-20070814035922-siavg542cwvkf4r5
Fix pretty doc generation so works for all html docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
172
172
        self.assertEqual('baz', self.working_dir)
173
173
        self.assertEqual(['foo', 'bar'], self.argv)
174
174
 
 
175
    def test_reject_extra_keyword_arguments(self):
 
176
        self.assertRaises(TypeError, self.run_bzr, "foo bar",
 
177
                          error_regex=['error message'])
 
178
 
175
179
 
176
180
class TestBenchmarkTests(TestCaseWithTransport):
177
181