/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 bzrlib/tests/blackbox/test_log.py

  • Committer: Jelmer Vernooij
  • Date: 2010-04-30 11:35:43 UTC
  • mfrom: (5195 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5197.
  • Revision ID: jelmer@samba.org-20100430113543-tiqqhmqa3d8no4iu
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
365
365
                            'options are "utc", "original", "local".'],
366
366
                           ['log', '--timezone', 'foo'])
367
367
 
 
368
    def test_log_exclude_ancestry_no_range(self):
 
369
        self.make_linear_branch()
 
370
        self.run_bzr_error(['bzr: ERROR: --exclude-common-ancestry'
 
371
                            ' requires -r with two revisions'],
 
372
                           ['log', '--exclude-common-ancestry'])
 
373
 
 
374
    def test_log_exclude_ancestry_single_revision(self):
 
375
        self.make_merged_branch()
 
376
        self.run_bzr_error(['bzr: ERROR: --exclude-common-ancestry'
 
377
                            ' requires two different revisions'],
 
378
                           ['log', '--exclude-common-ancestry',
 
379
                            '-r1.1.1..1.1.1'])
368
380
 
369
381
class TestLogTags(TestLog):
370
382