~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_cmdline.py

  • Committer: Ross Lagerwall
  • Date: 2012-12-10 14:44:20 UTC
  • mto: (6576.1.5 trunk)
  • mto: This revision was merged to the branch mainline in revision 6578.
  • Revision ID: rosslagerwall@gmail.com-20121210144420-kre7zvbak3g6nlx5
Handle empty quoted strings in command lines

Before, if EDITOR was set as 'emacsclient -a "" -t', it would be parsed
as [(False, 'emacsclient'), (False, '-a'), (True, '-t')], causing the
editor to be invoked incorrectly.

This changes it to parse it as [(False, 'emacsclient'), (False, '-a'),
(True, ''), (False, '-t')], which is correct.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
        self.assertAsTokens([(True, '')], u'""')
67
67
        self.assertAsTokens([(False, u"''")], u"''")
68
68
        self.assertAsTokens([(True, '')], u"''", single_quotes_allowed=True)
 
69
        self.assertAsTokens([(False, u'a'), (True, u''), (False, u'c')],
 
70
                            u'a "" c')
 
71
        self.assertAsTokens([(False, u'a'), (True, u''), (False, u'c')],
 
72
                            u"a '' c", single_quotes_allowed=True)
69
73
 
70
74
    def test_unicode_chars(self):
71
75
        self.assertAsTokens([(False, u'f\xb5\xee'), (False, u'\u1234\u3456')],