예제 #1
0
 def test_plaintext_for_no_text(self):
     b = GenericWrapper()
     self.assertEqual('', b.plaintext())
예제 #2
0
파일: test_base.py 프로젝트: T0ha/ezodf
 def test_plaintext_for_no_text(self):
     b = GenericWrapper()
     self.assertEqual('', b.plaintext())
예제 #3
0
 def test_plaintext(self):
     b = GenericWrapper()
     b.text = "text"
     self.assertEqual('text', b.plaintext())
예제 #4
0
파일: test_base.py 프로젝트: T0ha/ezodf
 def test_plaintext(self):
     b = GenericWrapper()
     b .text = "text"
     self.assertEqual('text', b.plaintext())