()
| 121 | |
| 122 | |
| 123 | def test_math_builtins(): |
| 124 | code = "m.radians(100)" |
| 125 | s = setup_state(code, code, pec="import math as m") |
| 126 | s.check_function("math.radians").check_args("x").has_equal_value() |
| 127 | |
| 128 | |
| 129 | @pytest.mark.parametrize("fun, argument", [("append", "object"), ("count", "value")]) |
nothing calls this directly
no test coverage detected