~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-13 17:02:41 UTC
  • mfrom: (1769.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060613170241-91efacfc55c6b9d2
(robertc, jelmer)Merge the new ControlFormat core logic to support .hg, .svn etc formats. (Robert Collins, Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    test_bzrdir_implementations = [
39
39
        'bzrlib.tests.bzrdir_implementations.test_bzrdir',
40
40
        ]
 
41
    formats = BzrDirFormat.known_formats()
41
42
    adapter = BzrDirTestProviderAdapter(
42
43
        default_transport,
43
44
        # None here will cause a readonly decorator to be created
44
45
        # by the TestCaseWithTransport.get_readonly_transport method.
45
46
        None,
46
 
        BzrDirFormat._formats.values())
 
47
        formats)
47
48
    loader = TestLoader()
48
49
    adapt_modules(test_bzrdir_implementations, adapter, loader, result)
49
50
    return result