(self)
| 1633 | self.assertEqual(next(it, 42), 42) |
| 1634 | |
| 1635 | def test_oct(self): |
| 1636 | self.assertEqual(oct(100), '0o144') |
| 1637 | self.assertEqual(oct(-100), '-0o144') |
| 1638 | self.assertRaises(TypeError, oct, ()) |
| 1639 | |
| 1640 | def write_testfile(self): |
| 1641 | # NB the first 4 lines are also used to test input, below |
nothing calls this directly
no test coverage detected