~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2009-06-11 02:05:44 UTC
  • Revision ID: aaron@aaronbentley.com-20090611020544-d6wqib7gki68o3u0
Implement create-mirror command

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    'cmd_cbranch': [],
33
33
    'cmd_cdiff': [],
34
34
    'cmd_conflict_diff': [],
 
35
    'cmd_create_mirror': [],
35
36
    'cmd_fetch_ghosts': ['fetch-missing'],
36
37
    'cmd_graph_ancestry': [],
37
38
    'cmd_import': [],
81
82
    import tests.test_link_tree
82
83
    import tests.test_patch
83
84
    import tests.test_rspush
 
85
    import tests.test_mirror
84
86
    import tests.upstream_import
85
87
    import zap
86
88
    import tests.blackbox
100
102
    result.addTest(TestLoader().loadTestsFromModule(tests.test_rspush))
101
103
    result.addTest(TestLoader().loadTestsFromModule(tests.test_cbranch))
102
104
    result.addTest(TestLoader().loadTestsFromModule(tests.test_conflict_diff))
 
105
    result.addTest(TestLoader().loadTestsFromModule(tests.test_mirror))
103
106
    return result