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

Fix tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
from bzrlib.tests.blackbox import ExternalBase
33
33
from bzrlib.tests import KnownFailure
34
34
 
35
 
from bzrlib.plugins.git.mapping import mapping_registry
36
35
from bzrlib.plugins.git import (
37
36
    tests,
38
37
    )
110
109
        self.assertTrue("branch: Git Branch" in output)
111
110
        self.assertTrue("repository: Git Repository" in output)
112
111
 
113
 
    def with_roundtripping(self):
114
 
        self.addCleanup(mapping_registry.set_default, mapping_registry.get().revid_prefix)
115
 
        mapping_registry.set_default('git-experimental')
116
 
 
117
112
    def test_push_roundtripping(self):
 
113
        raise KnownFailure("roundtripping is not yet supported")
118
114
        self.with_roundtripping()
119
115
        os.mkdir("bla")
120
116
        GitRepo.init(os.path.join(self.test_dir, "bla"))