~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Martin Pool
  • Date: 2006-06-20 07:55:43 UTC
  • mfrom: (1798 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1799.
  • Revision ID: mbp@sourcefrog.net-20060620075543-b10f6575d4a4fa32
[merge] bzr.dev

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