(self)
| 3180 | assert n.as_long() == 1 |
| 3181 | |
| 3182 | def test_denominator(self): |
| 3183 | r = RatVal(1, 3) |
| 3184 | d = r.denominator() |
| 3185 | assert isinstance(d, IntNumRef) |
| 3186 | assert d.as_long() == 3 |
| 3187 | |
| 3188 | def test_numerator_as_long(self): |
| 3189 | r = RatVal(7, 11) |
nothing calls this directly
no test coverage detected