~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/tests/special/bugs-fixed-elsewhere.txt

  • Committer: Colin Watson
  • Date: 2011-08-19 00:25:11 UTC
  • mfrom: (7675.1045.728 db-devel)
  • mto: This revision was merged to the branch mainline in revision 13909.
  • Revision ID: cjwatson@canonical.com-20110819002511-0x8hrqs1ckiqk53g
merge db-devel

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
    >>> from lp.bugs.interfaces.bugtask import IBugTaskSet
47
47
    >>> elsewhere = getUtility(IBugTaskSet).createTask(
48
 
    ...     bug, owner=getUtility(ILaunchBag).user, product=evolution)
 
48
    ...     bug, getUtility(ILaunchBag).user, evolution)
49
49
    >>> get_view().bugs_fixed_elsewhere_count
50
50
    0
51
51
 
88
88
    True
89
89
 
90
90
    >>> another_elsewhere = getUtility(IBugTaskSet).createTask(
91
 
    ...     another_bug, owner=getUtility(ILaunchBag).user, product=evolution)
 
91
    ...     another_bug, getUtility(ILaunchBag).user, evolution)
92
92
    >>> another_elsewhere.transitionToStatus(
93
93
    ...     BugTaskStatus.FIXRELEASED, getUtility(ILaunchBag).user)
94
94