The lens on `foo_bar` will only run the `foo_bar` test, but the lens on `foo` will run both tests. ```rust mod a { #[test] fn foo() {} } mod b { #[test] fn foo_bar() {} } ``` The lens should pass the module path to the `cargo test` invocation in order to not run all tests with a matching name
The lens on
foo_barwill only run thefoo_bartest, but the lens onfoowill run both tests.The lens should pass the module path to the
cargo testinvocation in order to not run all tests with a matching name