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

Add tests for revspec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
236
236
    suite = tests.TestSuite()
237
237
 
238
238
    testmod_names = [
 
239
        'test_blackbox',
239
240
        'test_builder',
240
241
        'test_branch',
241
242
        'test_dir',
245
246
        'test_remote',
246
247
        'test_repository',
247
248
        'test_shamap',
248
 
        'test_blackbox',
 
249
        'test_revspec',
249
250
        ]
250
251
    testmod_names = ['%s.%s' % (__name__, t) for t in testmod_names]
251
252
    suite.addTests(loader.loadTestsFromModuleNames(testmod_names))