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

Provide required infrastructure for new foreign branch tests in bzrlib.

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
    def get_format_description(self):
127
127
        return 'Git Branch'
128
128
 
 
129
    def network_name(self):
 
130
        return "git"
 
131
 
129
132
    def supports_tags(self):
130
133
        return True
131
134
 
 
135
    def get_foreign_tests_branch_factory(self):
 
136
        from bzrlib.plugins.git.tests.test_branch import ForeignTestsBranchFactory
 
137
        return ForeignTestsBranchFactory()
 
138
 
132
139
    def make_tags(self, branch):
133
140
        if getattr(branch.repository, "get_refs", None) is not None:
134
141
            from bzrlib.plugins.git.remote import RemoteGitTagDict