Exemplo n.º 1
0
 def __unicode__(self):
     return unicode(self.model) if self.model is not None else quoted(
         unicode(self.content))
Exemplo n.º 2
0
 def test_quoted(self):
     self.assertEqual(quoted('string'), '"string"')
     self.assertEqual(quoted('first second third'), '"first second third"')
     self.assertEqual(quoted(u'رشته'), u'"رشته"')
Exemplo n.º 3
0
 def __unicode__(self):
     return unicode(self.model) if self.model is not None else quoted(unicode(self.content))
Exemplo n.º 4
0
 def test_quoted(self):
     self.assertEqual(quoted('string'), '"string"')
     self.assertEqual(quoted('first second third'), '"first second third"')
     self.assertEqual(quoted(u'رشته'), u'"رشته"')