(tmp_path: Path, contents: str)
| 259 | |
| 260 | |
| 261 | def _write(tmp_path: Path, contents: str) -> Path: |
| 262 | path = tmp_path / "flow.yaml" |
| 263 | path.write_text(contents, encoding="utf-8") |
| 264 | return path |
| 265 | |
| 266 | |
| 267 | def test_inputs_flag_satisfies_required_field( |
no outgoing calls
no test coverage detected