~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/timeline/tests/test_requesttimeline.py

  • Committer: Robert Collins
  • Date: 2011-08-10 01:00:53 UTC
  • mto: This revision was merged to the branch mainline in revision 13644.
  • Revision ID: robertc@robertcollins.net-20110810010053-w2tcm21i87fwqr3s
Use the new extracted timeline module.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
__metaclass__ = type
7
7
 
8
8
import testtools
 
9
from timeline.timeline import OverlappingActionError, Timeline
9
10
from zope.publisher.browser import TestRequest
10
11
 
11
12
from canonical.launchpad import webapp
13
14
    get_request_timeline,
14
15
    set_request_timeline,
15
16
    )
16
 
from lp.services.timeline.timeline import OverlappingActionError, Timeline
17
17
 
18
18
 
19
19
class TestRequestTimeline(testtools.TestCase):