~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/job/tests/test_runner.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-08-16 20:38:35 UTC
  • mfrom: (13686.2.17 useoops)
  • Revision ID: launchpad@pqm.canonical.com-20110816203835-4q78rt0xz6zzuyka
[r=gmb][no-qa] More oops extraction. New deps oops-0.0.5
 oops-datedir-repo-0.0.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
206
206
            try:
207
207
                raise ValueError('Fake exception.  Foobar, I say!')
208
208
            except ValueError:
209
 
                reporter.handling(sys.exc_info())
 
209
                reporter.raising(sys.exc_info())
210
210
        job_1.run = handleError
211
211
        runner = JobRunner([job_1, job_2])
212
212
        runner.runAll()