()
| 70 | |
| 71 | |
| 72 | async def test_optionals_in_input_fields(): |
| 73 | svc = dag.host().service([dagger.PortForward(8000)]) |
| 74 | field = svc._ctx.selections.pop() |
| 75 | assert field.args == {"ports": [{"backend": 8000}]} |
| 76 | |
| 77 | |
| 78 | @pytest.mark.parametrize("val", ["spam", ""]) |
nothing calls this directly
no test coverage detected