Verify the pretty-printing of various int values
(self)
| 64 | |
| 65 | @support.requires_resource('cpu') |
| 66 | def test_int(self): |
| 67 | 'Verify the pretty-printing of various int values' |
| 68 | self.assertGdbRepr(42) |
| 69 | self.assertGdbRepr(0) |
| 70 | self.assertGdbRepr(-7) |
| 71 | self.assertGdbRepr(1000000000000) |
| 72 | self.assertGdbRepr(-1000000000000000) |
| 73 | |
| 74 | def test_singletons(self): |
| 75 | 'Verify the pretty-printing of True, False and None' |
nothing calls this directly
no test coverage detected