/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 blackbox test for 'bzr tags'

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        # Check that bzr log does not fail and includes the revision.
75
75
        output, error = self.run_bzr(['log', '-v'])
76
76
 
 
77
    def test_tags(self):
 
78
        self.simple_commit()
 
79
 
 
80
        tests.run_git("tag", "foo")
 
81
 
 
82
        output, error = self.run_bzr(['tags'])
 
83
        self.assertEquals(error, '')
 
84
        self.assertEquals(output, "foo                  1\n")
 
85