/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 more tests for fetch code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    tests,
25
25
    trace,
26
26
    )
27
 
from  bzrlib.plugins.git import errors
 
27
from bzrlib.plugins.git import (
 
28
    errors,
 
29
    )
28
30
 
29
31
TestCase = tests.TestCase
30
32
TestCaseInTempDir = tests.TestCaseInTempDir
228
230
 
229
231
    testmod_names = [
230
232
        'test_builder',
231
 
        'test_git_branch',
232
 
        'test_git_dir',
233
 
        'test_git_repository',
234
 
        'test_ids',
 
233
        'test_branch',
 
234
        'test_dir',
 
235
        'test_fetch',
 
236
        'test_mapping',
 
237
        'test_repository',
 
238
        'test_shamap',
235
239
        'test_blackbox',
236
 
        'test_versionedfiles',
237
240
        ]
238
241
    testmod_names = ['%s.%s' % (__name__, t) for t in testmod_names]
239
242
    suite.addTests(loader.loadTestsFromModuleNames(testmod_names))