use rstest::*; #[fixture] #[once] async fn error_async_once_fixture() { } #[fixture] #[once] fn error_generics_once_fixture() -> T { 42 } #[fixture] #[once] fn error_generics_once_fixture() -> impl Iterator { std::iter::once(42) } #[fixture] #[once] fn error_once_fixture_not_sync() -> std::cell::Cell { std::cell::Cell::new(42) }