Esempio n. 1
0
 def __unicode__(self):
     return unicode(self.model) if self.model is not None else quoted(
         unicode(self.content))
Esempio 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'"رشته"')
Esempio n. 3
0
 def __unicode__(self):
     return unicode(self.model) if self.model is not None else quoted(unicode(self.content))
Esempio 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'"رشته"')