I have unit tests in a package named school-info
and there is a test function called repeat_students_should_not_get_full_marks
.
I can run all tests in the module by cargo test --package school_info
.
cargo test test-name
will match and run tests which contain test_name
though this wasn't helpful.
How can I run only the test repeat_students_should_not_get_full_marks
without running all the tests? I could not find a command in the documentation to do it.