(self)
| 1198 | self.assertEqual(self.func(data), (int, Fraction(0), 0)) |
| 1199 | |
| 1200 | def test_ints(self): |
| 1201 | self.assertEqual(self.func([1, 5, 3, -4, -8, 20, 42, 1]), |
| 1202 | (int, Fraction(60), 8)) |
| 1203 | |
| 1204 | def test_floats(self): |
| 1205 | self.assertEqual(self.func([0.25]*20), |
nothing calls this directly
no test coverage detected