~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/browser/tests/test_queue.py

  • Committer: Julian Edwards
  • Date: 2011-07-28 20:46:18 UTC
  • mfrom: (13553 devel)
  • mto: This revision was merged to the branch mainline in revision 13555.
  • Revision ID: julian.edwards@canonical.com-20110728204618-tivj2wx2oa9s32bx
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
236
236
            view = self.makeView(upload.distroseries, queue_admin)
237
237
            html_text = view()
238
238
        self.assertIn(upload.package_name, html_text)
 
239
        # The details section states the sync's origin and requester.
 
240
        self.assertIn(
 
241
            upload.package_copy_job.source_archive.displayname, html_text)
 
242
        self.assertIn(
 
243
            upload.package_copy_job.job.requester.displayname, html_text)
239
244
 
240
245
 
241
246
class TestCompletePackageUpload(TestCaseWithFactory):