~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/blackbox.py

  • Committer: Aaron Bentley
  • Date: 2005-10-13 15:21:50 UTC
  • mto: (1185.25.1)
  • mto: This revision was merged to the branch mainline in revision 1460.
  • Revision ID: abentley@panoramicfeedback.com-20051013152150-454a9cc25007f24d
Added one-line log format

Show diffs side-by-side

added added

removed removed

Lines of Context:
639
639
        f.close()
640
640
 
641
641
        f = file('msg.tmp', 'wt')
642
 
        f.write('this is my new commit\n')
 
642
        f.write('this is my new commit\nand it has multiple lines, for fun')
643
643
        f.close()
644
644
 
645
645
        runbzr('commit -F msg.tmp')
653
653
        runbzr('log -v --forward')
654
654
        runbzr('log -m', retcode=1)
655
655
        log_out = capture('log -m commit')
656
 
        assert "this is my new commit" in log_out
 
656
        assert "this is my new commit\n  and" in log_out
657
657
        assert "rename nested" not in log_out
658
658
        assert 'revision-id' not in log_out
659
659
        assert 'revision-id' in capture('log --show-ids -m commit')
660
660
 
 
661
        log_out = capture('log --line')
 
662
        for line in log_out.splitlines():
 
663
            assert len(line) <= 79, len(line)
 
664
        assert "this is my new commit and" in log_out
 
665
 
661
666
 
662
667
        progress("file with spaces in name")
663
668
        mkdir('sub directory')