(name, values, arguments)
| 113 | ], |
| 114 | ) |
| 115 | def test_numpy_builtins(name, values, arguments): |
| 116 | code = "%s(%s)" % (name, values) |
| 117 | s = setup_state(code, code, pec="import numpy") |
| 118 | fun_state = s.check_function(name) |
| 119 | for arg in arguments: |
| 120 | fun_state.check_args(arg).has_equal_value() |
| 121 | |
| 122 | |
| 123 | def test_math_builtins(): |
nothing calls this directly
no test coverage detected