(self)
| 91 | ) |
| 92 | |
| 93 | def test_unicode_text_row(self): |
| 94 | self.section.add_row([1]) |
| 95 | self.section.add_row(['check']) |
| 96 | self.section.add_row(['\u2713']) |
| 97 | self.assertEqual(self.section.rows, [['1'], ['check'], ['\u2713']]) |
| 98 | |
| 99 | |
| 100 | class TestMultiTable(unittest.TestCase): |