~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_options.py

  • Committer: Robert Collins
  • Date: 2006-06-16 15:40:20 UTC
  • mfrom: (1773.1.2 status)
  • mto: This revision was merged to the branch mainline in revision 1778.
  • Revision ID: robertc@robertcollins.net-20060616154020-aff002ca470b7526
(robertc)Remove --all option from status and deprecate the underlying api.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
        eq = self.assertEquals
16
16
        eq(parse_args(cmd_commit(), ['--help']),
17
17
           ([], {'help': True}))
18
 
        eq(parse_args(cmd_status(), ['--all']),
19
 
           ([], {'all': True}))
20
18
        eq(parse_args(cmd_commit(), ['--message=biter']),
21
19
           ([], {'message': 'biter'}))
22
20
        ## eq(parse_args(cmd_log(),  '-r 500'.split()),