~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-08-07 06:32:51 UTC
  • mto: (6437.63.5 2.5)
  • mto: This revision was merged to the branch mainline in revision 6558.
  • Revision ID: rosslagerwall@gmail.com-20120807063251-x9p03ghg2ws8oqjc
Add bzrlib/locale to .bzrignore

bzrlib/locale is generated with ./setup.py build_mo which is in turn called
by ./setup.py build

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)
73
69
 
74
70
    def test_unicode_chars(self):
75
71
        self.assertAsTokens([(False, u'f\xb5\xee'), (False, u'\u1234\u3456')],