(path, text)
| 652 | self.assertEqual(aRepr.repr(t), "Type With Spaces") |
| 653 | |
| 654 | def write_file(path, text): |
| 655 | with open(path, 'w', encoding='ASCII') as fp: |
| 656 | fp.write(text) |
| 657 | |
| 658 | class LongReprTest(unittest.TestCase): |
| 659 | longname = 'areallylongpackageandmodulenametotestreprtruncation' |
no test coverage detected