~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/doc/bug-change.txt

  • Committer: Steve Kowalik
  • Date: 2011-08-07 04:05:52 UTC
  • mto: This revision was merged to the branch mainline in revision 13626.
  • Revision ID: stevenk@ubuntu.com-20110807040552-mwnxo0flmhvl35e8
Correct the notification based on review comments, and remove request{,ed}
from the function names, switching to create{,d}.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
The base class for BugChanges doesn't actually implement anything.
4
4
 
5
5
    >>> import pytz
6
 
    >>> from lp.services.webapp.testing import verifyObject
 
6
    >>> from canonical.launchpad.webapp.testing import verifyObject
7
7
    >>> from datetime import datetime
8
8
    >>> from lp.bugs.adapters.bugchange import BugChangeBase
9
9
    >>> from lp.bugs.interfaces.bugchange import IBugChange
216
216
    >>> get_bug_change_class(example_bug.bugtasks[0], 'importance')
217
217
    <class '...BugTaskImportanceChange'>
218
218
 
 
219
See component/ftests/test_bugchange.py for some sanity checks.
 
220
 
219
221
 
220
222
=== AttributeChange ===
221
223