1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Cucumber BDD runner for `rtb-error`.
//!
//! Integrates with `cargo test` / `cargo nextest` — no separate harness
//! binary. Scenarios live under `tests/features/`, step impls under
//! `tests/steps/`.
// Cucumber's attribute macros dictate step-function signatures: step
// fns must take `&mut World` and consume owned `String` parameters
// (the regex capture groups). Several pedantic lints fight with those
// requirements, so we silence them across the test harness.
use World;
use ErrorWorld;
async