/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_status.py

  • Committer: Lukáš Lalinsky
  • Date: 2007-08-25 13:54:28 UTC
  • mto: This revision was merged to the branch mainline in revision 2776.
  • Revision ID: lalinsky@gmail.com-20070825135428-6gfms099o3txnonp
Allow options to be stored in attributes that differ from their 'name' and use this to let '--change' and '--revision' to override each other.

Show diffs side-by-side

added added

removed removed

Lines of Context:
386
386
        out, err = self.run_bzr('status -r 1..23..123', retcode=3)
387
387
        self.assertContainsRe(err, 'one or two revision specifiers')
388
388
 
389
 
    def test_status_revision_and_change(self):
390
 
        out, err = self.run_bzr('status -r 1..23 -C 22', retcode=3)
391
 
        self.assertContainsRe(err, '--revision or --change, not both')
392
 
 
393
389
 
394
390
class TestStatusEncodings(TestCaseWithTransport):
395
391