def testCreateWithObject(self): """ error: create with any object """ class Foo: def __unicode__(self): return u'טעות' def __str__(self): return 'טעות' err = error.Error(Foo()) assert unicode(err) == u'טעות' assert str(err) == 'טעות'
def testAccessLikeDict(self): """ error: access error like a dict """ test = 'value' err = error.Error(test) assert '%(message)s' % err == test
def testCreateWithEncodedString(self): """ error: create with encoded string """ err = error.Error('טעות') assert unicode(err) == u'טעות' assert str(err) == 'טעות'
def testCreateWithUnicode(self): """ error: create with unicode """ err = error.Error(u'טעות') assert unicode(err) == u'טעות' assert str(err) == 'טעות'