We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf9f382 commit 0b7f3feCopy full SHA for 0b7f3fe
tests/integration_tests.rs
@@ -125,6 +125,9 @@ fn get_hint_for_single_test() {
125
fn all_exercises_require_confirmation() {
126
for exercise in glob("exercises/**/*.rs").unwrap() {
127
let path = exercise.unwrap();
128
+ if path.file_name().unwrap() == "mod.rs" {
129
+ continue
130
+ }
131
let source = {
132
let mut file = File::open(&path).unwrap();
133
let mut s = String::new();
0 commit comments