~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: John Arbash Meinel
  • Date: 2011-05-11 11:35:28 UTC
  • mto: This revision was merged to the branch mainline in revision 5851.
  • Revision ID: john@arbash-meinel.com-20110511113528-qepibuwxicjrbb2h
Break compatibility with python <2.6.

This includes auditing the code for places where we were doing
explicit 'sys.version' checks and removing them as appropriate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 
36
36
 
37
37
def make_scenarios(vfs_factory, transport_server, transport_readonly_server,
38
 
    formats, name_suffix=''):
 
38
                   formats, name_suffix=''):
39
39
    """Transform the input to a list of scenarios.
40
40
 
41
41
    :param formats: A list of bzrdir_format objects.
77
77
def load_tests(standard_tests, module, loader):
78
78
    test_per_controldir = [
79
79
        'bzrlib.tests.per_controldir.test_controldir',
 
80
        'bzrlib.tests.per_controldir.test_format',
80
81
        'bzrlib.tests.per_controldir.test_push',
81
82
        ]
82
83
    submod_tests = loader.loadTestsFromModuleNames(test_per_controldir)