/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/test_fetch.py

Remove tests for removed FetchGraphWalker.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
    get_rich_root_format,
50
50
    )
51
51
from bzrlib.plugins.git.fetch import (
52
 
    BzrFetchGraphWalker,
53
52
    import_git_blob,
54
53
    import_git_tree,
55
54
    )
65
64
    )
66
65
 
67
66
 
68
 
class FetchGraphWalkerTests(TestCaseWithTransport):
69
 
 
70
 
    def setUp(self):
71
 
        TestCaseWithTransport.setUp(self)
72
 
        self.mapping = default_mapping
73
 
 
74
 
    def test_empty(self):
75
 
        tree = self.make_branch_and_tree("wt")
76
 
        graphwalker = BzrFetchGraphWalker(tree.branch.repository, self.mapping)
77
 
        self.assertEquals(None, graphwalker.next())
78
 
 
79
 
 
80
67
class RepositoryFetchTests:
81
68
 
82
69
    def make_git_repo(self, path):