(self)
| 3190 | assert r.numerator_as_long() == 7 |
| 3191 | |
| 3192 | def test_denominator_as_long(self): |
| 3193 | r = RatVal(7, 11) |
| 3194 | assert r.denominator_as_long() == 11 |
| 3195 | |
| 3196 | def test_as_fraction(self): |
| 3197 | from fractions import Fraction |
nothing calls this directly
no test coverage detected