mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-23 14:12:23 -05:00
Remove the I AM NOT DONE check
This commit is contained in:
parent
ea40804371
commit
c45d2c3255
1 changed files with 2 additions and 5 deletions
|
@ -1,5 +1,4 @@
|
||||||
use assert_cmd::prelude::*;
|
use assert_cmd::prelude::*;
|
||||||
use predicates::boolean::PredicateBooleanExt;
|
|
||||||
use std::process::Command;
|
use std::process::Command;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
@ -110,8 +109,7 @@ fn run_compile_exercise_does_not_prompt() {
|
||||||
.args(["run", "pending_exercise"])
|
.args(["run", "pending_exercise"])
|
||||||
.current_dir("tests/fixture/state")
|
.current_dir("tests/fixture/state")
|
||||||
.assert()
|
.assert()
|
||||||
.code(0)
|
.code(0);
|
||||||
.stdout(predicates::str::contains("I AM NOT DONE").not());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
@ -121,8 +119,7 @@ fn run_test_exercise_does_not_prompt() {
|
||||||
.args(["run", "pending_test_exercise"])
|
.args(["run", "pending_test_exercise"])
|
||||||
.current_dir("tests/fixture/state")
|
.current_dir("tests/fixture/state")
|
||||||
.assert()
|
.assert()
|
||||||
.code(0)
|
.code(0);
|
||||||
.stdout(predicates::str::contains("I AM NOT DONE").not());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
Loading…
Reference in a new issue