/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

SupportĀ settingĀ tags.

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
        self.assertEquals(output, "foo                  1\n")
104
104
 
105
105
    def test_tag(self):
106
 
        raise KnownFailure("setting tags not supported by git-python yet")
107
106
        self.simple_commit()
108
107
 
109
108
        output, error = self.run_bzr(["tag", "bar"])
110
109
 
111
110
        self.assertEquals(error, '')
112
 
        self.assertEquals(output, '')
 
111
        self.assertEquals(output, 'Created tag bar.\n')
113
112