/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

Add test for creating new tags.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Black-box tests for bzr-git."""
18
18
 
 
19
from bzrlib.tests import KnownFailure
19
20
from bzrlib.tests.blackbox import ExternalBase
20
21
 
21
22
from bzrlib.plugins.git import (
83
84
        self.assertEquals(error, '')
84
85
        self.assertEquals(output, "foo                  1\n")
85
86
 
 
87
    def test_tag(self):
 
88
        raise KnownFailure("setting tags not supported by git-python yet")
 
89
        self.simple_commit()
 
90
 
 
91
        output, error = self.run_bzr(["tag", "bar"])
 
92
 
 
93
        self.assertEquals(error, '')
 
94
        self.assertEquals(output, '')
 
95