Exemplo n.º 1
0
 def testMarkup(self):
     obj = Mock()
     obj.description = "Test <em>me</me> <strong>now</strong>"
     self.assertEqual(Description(obj)(), "Test me now")
Exemplo n.º 2
0
 def testEmpty(self):
     obj = Mock()
     obj.description = ""
     self.assertEqual(Description(obj)(), "")
Exemplo n.º 3
0
 def testSimpleText(self):
     obj = Mock()
     obj.description = "Test"
     self.assertEqual(Description(obj)(), "Test")
Exemplo n.º 4
0
 def testMissing(self):
     self.assertEqual(Description(object())(), "")