/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 log -v.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
 
59
59
    def test_log(self):
60
60
        # Smoke test for "bzr log" in a git repository.
61
 
 
62
61
        self.simple_commit()
63
62
 
64
63
        # Check that bzr log does not fail and includes the revision.
67
66
        self.assertTrue(
68
67
            '<The commit message>' in output,
69
68
            "Commit message was not found in output:\n%s" % (output,))
 
69
 
 
70
    def test_log_verbose(self):
 
71
        # Smoke test for "bzr log -v" in a git repository.
 
72
        self.simple_commit()
 
73
 
 
74
        # Check that bzr log does not fail and includes the revision.
 
75
        output, error = self.run_bzr(['log', '-v'])
 
76