mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-08 09:09:17 +01:00
Check for missing TODO comments
This commit is contained in:
parent
b8fcd11286
commit
a3657188b6
@ -92,6 +92,10 @@ fn check_info_file_exercises(info_file: &InfoFile) -> Result<hashbrown::HashSet<
|
|||||||
bail!("The `main` function is missing in the file `{path}`.\nCreate at least an empty `main` function to avoid language server errors");
|
bail!("The `main` function is missing in the file `{path}`.\nCreate at least an empty `main` function to avoid language server errors");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if !file_buf.contains("// TODO") {
|
||||||
|
bail!("Didn't find any `// TODO` comment in the file `{path}`.\nYou need to have at least one such comment to guide the user.");
|
||||||
|
}
|
||||||
|
|
||||||
if !exercise_info.test && file_buf.contains("#[test]") {
|
if !exercise_info.test && file_buf.contains("#[test]") {
|
||||||
bail!("The file `{path}` contains tests annotated with `#[test]` but the exercise `{name}` has `test = false` in the `info.toml` file");
|
bail!("The file `{path}` contains tests annotated with `#[test]` but the exercise `{name}` has `test = false` in the `info.toml` file");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user