(self)
| 3186 | assert d.as_long() == 3 |
| 3187 | |
| 3188 | def test_numerator_as_long(self): |
| 3189 | r = RatVal(7, 11) |
| 3190 | assert r.numerator_as_long() == 7 |
| 3191 | |
| 3192 | def test_denominator_as_long(self): |
| 3193 | r = RatVal(7, 11) |
nothing calls this directly
no test coverage detected