Ejemplo n.º 1
0
 def test_plaintext_for_no_text(self):
     b = GenericWrapper()
     self.assertEqual('', b.plaintext())
Ejemplo n.º 2
0
 def test_plaintext_for_no_text(self):
     b = GenericWrapper()
     self.assertEqual('', b.plaintext())
Ejemplo n.º 3
0
 def test_plaintext(self):
     b = GenericWrapper()
     b.text = "text"
     self.assertEqual('text', b.plaintext())
Ejemplo n.º 4
0
 def test_plaintext(self):
     b = GenericWrapper()
     b .text = "text"
     self.assertEqual('text', b.plaintext())