Verify the pretty-printing of True, False and None
(self)
| 72 | self.assertGdbRepr(-1000000000000000) |
| 73 | |
| 74 | def test_singletons(self): |
| 75 | 'Verify the pretty-printing of True, False and None' |
| 76 | self.assertGdbRepr(True) |
| 77 | self.assertGdbRepr(False) |
| 78 | self.assertGdbRepr(None) |
| 79 | |
| 80 | def test_dicts(self): |
| 81 | 'Verify the pretty-printing of dictionaries' |
nothing calls this directly
no test coverage detected