~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/devscripts/tests/test_autoland.py

  • Committer: William Grant
  • Date: 2012-01-01 03:03:28 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101030328-xtkp6ob1q8h40sxw
Format the non-contrib bits of lib.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
__metaclass__ = type
7
7
 
 
8
import re
8
9
import unittest
9
 
import re
10
 
 
11
 
from launchpadlib.launchpad import EDGE_SERVICE_ROOT, STAGING_SERVICE_ROOT
12
 
 
 
10
 
 
11
from launchpadlib.launchpad import (
 
12
    EDGE_SERVICE_ROOT,
 
13
    STAGING_SERVICE_ROOT,
 
14
    )
 
15
 
 
16
from devscripts.autoland import (
 
17
    get_bazaar_host,
 
18
    get_bugs_clause,
 
19
    get_qa_clause,
 
20
    get_reviewer_clause,
 
21
    get_reviewer_handle,
 
22
    get_testfix_clause,
 
23
    MergeProposal,
 
24
    MissingBugsError,
 
25
    MissingBugsIncrementalError,
 
26
    MissingReviewError,
 
27
    )
13
28
from lp.testing.fakemethod import FakeMethod
14
29
 
15
 
from devscripts.autoland import (
16
 
    get_bazaar_host, get_bugs_clause, get_reviewer_clause,
17
 
    get_reviewer_handle, get_qa_clause, get_testfix_clause,
18
 
    MissingReviewError, MissingBugsError, MissingBugsIncrementalError,
19
 
    MergeProposal)
20
 
 
21
30
 
22
31
class FakeBugTask:
23
32