mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 05:52:23 -05:00
Make "I AM NOT DONE" caseless
This commit is contained in:
parent
c0c112985b
commit
bdf826a026
1 changed files with 4 additions and 12 deletions
|
@ -5,7 +5,7 @@ use std::io::{self, BufRead, BufReader};
|
|||
use std::path::PathBuf;
|
||||
use std::process::{self, Command};
|
||||
use std::{array, env, mem};
|
||||
use winnow::ascii::{space0, space1};
|
||||
use winnow::ascii::{space0, Caseless};
|
||||
use winnow::combinator::opt;
|
||||
use winnow::Parser;
|
||||
|
||||
|
@ -21,13 +21,7 @@ fn not_done(input: &str) -> bool {
|
|||
"//",
|
||||
opt('/'),
|
||||
space0,
|
||||
'I',
|
||||
space1,
|
||||
"AM",
|
||||
space1,
|
||||
"NOT",
|
||||
space1,
|
||||
"DONE",
|
||||
Caseless("I AM NOT DONE"),
|
||||
)
|
||||
.parse_next(&mut &*input)
|
||||
.is_ok()
|
||||
|
@ -439,14 +433,12 @@ mod test {
|
|||
assert!(not_done("// I AM NOT DONE"));
|
||||
assert!(not_done("/// I AM NOT DONE"));
|
||||
assert!(not_done("// I AM NOT DONE "));
|
||||
assert!(not_done("// I AM NOT DONE"));
|
||||
assert!(not_done("// I AM NOT DONE"));
|
||||
assert!(not_done("// I AM NOT DONE "));
|
||||
assert!(not_done("// I AM NOT DONE!"));
|
||||
assert!(not_done("// I am not done"));
|
||||
assert!(not_done("// i am NOT done"));
|
||||
|
||||
assert!(!not_done("I AM NOT DONE"));
|
||||
assert!(!not_done("// NOT DONE"));
|
||||
assert!(!not_done("DONE"));
|
||||
assert!(!not_done("// i am not done"));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue