~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_pack_repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-01-11 07:01:27 UTC
  • mfrom: (5579.3.1 bzr.dev)
  • Revision ID: pqm@pqm.ubuntu.com-20110111070127-7cm7qwq6y5t0n36x
(jelmer) Remove some unused imports in the test code. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
These tests are repeated for all pack-based repository formats.
20
20
"""
21
21
 
22
 
from cStringIO import StringIO
23
22
from stat import S_ISDIR
24
23
 
25
24
from bzrlib.btree_index import BTreeGraphIndex
29
28
    errors,
30
29
    inventory,
31
30
    osutils,
32
 
    progress,
33
31
    repository,
34
32
    revision as _mod_revision,
35
 
    symbol_versioning,
36
33
    tests,
37
34
    ui,
38
 
    upgrade,
39
 
    workingtree,
40
 
    )
41
 
from bzrlib.repofmt import (
42
 
    pack_repo,
43
 
    groupcompress_repo,
44
35
    )
45
36
from bzrlib.repofmt.groupcompress_repo import RepositoryFormat2a
46
37
from bzrlib.smart import (
47
38
    client,
48
39
    )
49
40
from bzrlib.tests import (
50
 
    TestCase,
51
41
    TestCaseWithTransport,
52
42
    TestNotApplicable,
53
 
    TestSkipped,
54
43
    )
55
44
from bzrlib.transport import (
56
45
    get_transport,
57
46
    memory,
58
47
    )
59
48
from bzrlib.tests import test_server
60
 
from bzrlib.tests.per_repository import TestCaseWithRepository
61
49
 
62
50
 
63
51
class TestPackRepository(TestCaseWithTransport):