~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/doc/distribution.txt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-06-29 01:49:37 UTC
  • mfrom: (13316.3.4 syncUpdate-huh)
  • Revision ID: launchpad@pqm.canonical.com-20110629014937-h26dx50bi1s1jz6q
[r=jml][no-qa] Remove syncUpdate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
167
167
Neither in UNAPPROVED:
168
168
 
169
169
    >>> queue.setUnapproved()
170
 
    >>> from canonical.launchpad.ftests import syncUpdate
171
 
    >>> syncUpdate(queue)
172
170
    >>> queue.status.name
173
171
    'UNAPPROVED'
174
172
 
178
176
Only records in ACCEPTED does:
179
177
 
180
178
    >>> queue.setAccepted()
181
 
    >>> syncUpdate(queue)
182
179
    >>> queue.status.name
183
180
    'ACCEPTED'
184
181
 
190
187
Records in DONE also do not trigger pending-acceptance state in PPAs:
191
188
 
192
189
    >>> queue.setDone()
193
 
    >>> syncUpdate(queue)
194
190
    >>> queue.status.name
195
191
    'DONE'
196
192