~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Robert Collins
  • Date: 2006-08-08 23:19:29 UTC
  • mfrom: (1884 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1912.
  • Revision ID: robertc@robertcollins.net-20060808231929-4e3e298190214b3a
current status

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