/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/branch_implementations/__init__.py

  • Committer: Robert Collins
  • Date: 2007-03-28 07:33:07 UTC
  • mto: (2018.5.113 hpss)
  • mto: This revision was merged to the branch mainline in revision 2383.
  • Revision ID: robertc@robertcollins.net-20070328073307-ni7dcww9b1rf0udp
Split out hpss test fixes which dont depend on new or altered API's.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
        'bzrlib.tests.branch_implementations.test_uncommit',
58
58
        'bzrlib.tests.branch_implementations.test_update',
59
59
        ]
 
60
    # Generate a list of branch formats and their associated bzrdir formats to
 
61
    # use.
 
62
    combinations = [(format, format._matchingbzrdir) for format in 
 
63
         BranchFormat._formats.values() + _legacy_formats]
 
64
    # TODO: To usefully test the SmartServer, we need to specify the bzrdir
 
65
    # format, branch format, and also the transport.
60
66
    adapter = BranchTestProviderAdapter(
61
67
        default_transport,
62
68
        # None here will cause a readonly decorator to be created
63
69
        # by the TestCaseWithTransport.get_readonly_transport method.
64
70
        None,
65
 
        [(format, format._matchingbzrdir) for format in 
66
 
         BranchFormat._formats.values() + _legacy_formats])
 
71
        combinations)
67
72
    loader = TestLoader()
68
73
    adapt_modules(test_branch_implementations, adapter, loader, result)
69
74
    return result