~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/tests/test_codereviewkarma.py

  • Committer: William Grant
  • Date: 2011-12-30 07:38:46 UTC
  • mto: This revision was merged to the branch mainline in revision 14611.
  • Revision ID: william.grant@canonical.com-20111230073846-za6koaso1y89evjy
canonical.lazr.testing.event -> lp.testing.event.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
__metaclass__ = type
7
7
 
8
 
from lp.testing import login_person
9
 
from canonical.lazr.testing.event import TestEventListener
10
 
from lp.testing.layers import DatabaseFunctionalLayer
11
8
from lp.registry.interfaces.karma import IKarmaAssignedEvent
12
9
from lp.registry.interfaces.person import IPerson
13
 
from lp.testing import TestCaseWithFactory
 
10
from lp.testing import (
 
11
    login_person,
 
12
    TestCaseWithFactory,
 
13
    )
 
14
from lp.testing.event import TestEventListener
 
15
from lp.testing.layers import DatabaseFunctionalLayer
14
16
 
15
17
 
16
18
class TestCodeReviewKarma(TestCaseWithFactory):