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