/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: Marius Kruger
  • Date: 2007-03-31 20:49:06 UTC
  • mfrom: (2384 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2455.
  • Revision ID: amanic@gmail.com-20070331204906-iai2v10wk3l3lt12
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
        'bzrlib.tests.branch_implementations.test_parent',
52
52
        'bzrlib.tests.branch_implementations.test_permissions',
53
53
        'bzrlib.tests.branch_implementations.test_pull',
 
54
        'bzrlib.tests.branch_implementations.test_push',
 
55
        'bzrlib.tests.branch_implementations.test_revision_history',
54
56
        'bzrlib.tests.branch_implementations.test_tags',
55
 
        'bzrlib.tests.branch_implementations.test_push',
56
57
        'bzrlib.tests.branch_implementations.test_uncommit',
57
58
        'bzrlib.tests.branch_implementations.test_update',
58
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]
59
64
    adapter = BranchTestProviderAdapter(
60
65
        default_transport,
61
66
        # None here will cause a readonly decorator to be created
62
67
        # by the TestCaseWithTransport.get_readonly_transport method.
63
68
        None,
64
 
        [(format, format._matchingbzrdir) for format in 
65
 
         BranchFormat._formats.values() + _legacy_formats])
 
69
        combinations)
66
70
    loader = TestLoader()
67
71
    adapt_modules(test_branch_implementations, adapter, loader, result)
68
72
    return result