| 63 | |
| 64 | @dataclass |
| 65 | class StepFunctionContext: |
| 66 | type: Literal["given", "when", "then"] | None |
| 67 | step_func: Callable[..., Any] |
| 68 | parser: StepParser |
| 69 | converters: dict[str, Callable[[str], Any]] = field(default_factory=dict) |
| 70 | target_fixture: str | None = None |
| 71 | |
| 72 | |
| 73 | def get_step_fixture_name(step: Step) -> str: |
no outgoing calls
no test coverage detected
searching dependent graphs…