(cls, name, args, expected, ctx: Context)
| 243 | ) |
| 244 | @pytest.mark.parametrize("cls", [Argument, Input]) |
| 245 | def test_input_field_arg(cls, name, args, expected, ctx: Context): |
| 246 | assert _InputField(ctx, name, cls(*args)).as_arg() == expected |
| 247 | |
| 248 | |
| 249 | def test_input_object_field_deprecated(): |
nothing calls this directly
no test coverage detected