~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/interfaces/tests/test_branch.py

  • Committer: Jeroen Vermeulen
  • Date: 2011-09-26 07:33:00 UTC
  • mto: This revision was merged to the branch mainline in revision 14049.
  • Revision ID: jeroen.vermeulen@canonical.com-20110926073300-kaga6e6tuvi2w9b3
Automated import fixes and copyright updates.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
4
"""Tests of the branch interface."""
5
5
 
6
6
__metaclass__ = type
7
7
 
8
 
import lp.codehosting  # For plugins.
9
 
 
10
 
from bzrlib.branch import (
11
 
    format_registry as branch_format_registry,
12
 
    )
 
8
from bzrlib.branch import format_registry as branch_format_registry
13
9
from bzrlib.bzrdir import BzrProber
14
10
from bzrlib.repository import format_registry as repo_format_registry
15
11
 
18
14
    ControlFormat,
19
15
    RepositoryFormat,
20
16
    )
 
17
import lp.codehosting  # For plugins.
21
18
from lp.testing import TestCase
22
19
 
23
20