~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_commands.py

  • Committer: Martin Pool
  • Date: 2010-02-17 06:53:19 UTC
  • mfrom: (4913.5.27 cmdline-splitter)
  • mto: This revision was merged to the branch mainline in revision 5046.
  • Revision ID: mbp@sourcefrog.net-20100217065319-8vbnn4mvyk5herhl
Merge and add news for lp:392248

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
 
112
112
    def test_unicode(self):
113
113
        my_config = self._get_config("[ALIASES]\n"
114
 
            u"iam=whoami 'Erik B\u00e5gfors <erik@bagfors.nu>'\n")
 
114
            u'iam=whoami "Erik B\u00e5gfors <erik@bagfors.nu>"\n')
115
115
        self.assertEqual([u'whoami', u'Erik B\u00e5gfors <erik@bagfors.nu>'],
116
116
                          commands.get_alias("iam", config=my_config))
117
117