~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-07-28 14:46:35 UTC
  • mfrom: (13534.2.1 bug-816833)
  • Revision ID: launchpad@pqm.canonical.com-20110728144635-pq1oc2cr8hl893pz
[r=allenap][bug=816833] +queue foldout section for sync uploads.

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):