(float_ty, decimal_ty, case_generator)
| 2260 | random_float_to_decimal_cast_cases], |
| 2261 | ids=['integrals', 'reals', 'random']) |
| 2262 | def test_cast_float_to_decimal(float_ty, decimal_ty, case_generator): |
| 2263 | with decimal.localcontext() as ctx: |
| 2264 | for case in case_generator(float_ty, decimal_ty.max_precision): |
| 2265 | check_cast_float_to_decimal( |
| 2266 | float_ty, case.float_val, |
| 2267 | decimal_ty.factory(case.precision, case.scale), |
| 2268 | ctx, decimal_ty.max_precision) |
| 2269 | |
| 2270 | |
| 2271 | @pytest.mark.numpy |
nothing calls this directly
no test coverage detected