chromium/third_party/rust/chromium_crates_io/vendor/rstest-0.17.0/tests/resources/fixture/from_other_module.rs


mod my_mod {
    use rstest::{fixture};

    #[fixture]
    pub fn mod_fixture() -> u32 { 42 }
}

use my_mod::mod_fixture;

#[test]
fn struct_access() {
    assert_eq!(42, mod_fixture::default());
}