/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/repository_implementations/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2007-02-13 20:33:57 UTC
  • mfrom: (2283 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2294.
  • Revision ID: john@arbash-meinel.com-20070213203357-b7yg41mi9sk6cqd0
[merge] bzr.dev 2283
resolve conflicts in moved repository formats
small issue with osutils.contains_whitespace()

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
from bzrlib import (
28
28
    repository,
29
29
    )
30
 
from bzrlib.repository import (_legacy_formats,
31
 
                               RepositoryTestProviderAdapter,
32
 
                               )
33
 
                            
 
30
from bzrlib.repository import (
 
31
    RepositoryTestProviderAdapter,
 
32
    )
 
33
from bzrlib.repofmt import (
 
34
    weaverepo,
 
35
    )
34
36
from bzrlib.tests import (
35
37
                          adapt_modules,
36
38
                          default_transport,
48
50
        'bzrlib.tests.repository_implementations.test_reconcile',
49
51
        'bzrlib.tests.repository_implementations.test_repository',
50
52
        'bzrlib.tests.repository_implementations.test_revision',
 
53
        'bzrlib.tests.repository_implementations.test_statistics',
51
54
        ]
52
 
    all_formats = [v for (k, v) in repository.format_registry.iteritems()]
53
 
    all_formats.extend(_legacy_formats)
 
55
    registry = repository.format_registry
 
56
    all_formats = [registry.get(k) for k in registry.keys()]
 
57
    all_formats.extend(weaverepo._legacy_formats)
54
58
    adapter = RepositoryTestProviderAdapter(
55
59
        default_transport,
56
60
        # None here will cause a readonly decorator to be created