(self)
| 102 | self.table = MultiTable() |
| 103 | |
| 104 | def test_max_width_calculation(self): |
| 105 | self.table.add_title('foo') |
| 106 | self.table.add_row_header(['one', 'two', 'three']) |
| 107 | self.table.add_row(['one', 'two', 'three']) |
| 108 | self.table.new_section('bar') |
| 109 | self.table.add_row_header(['one', 'two']) |
| 110 | self.table.add_row(['12345', '1234567']) |
| 111 | |
| 112 | |
| 113 | class TestVerticalTableConversion(unittest.TestCase): |
nothing calls this directly
no test coverage detected