mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-03-29 21:57:03 +02:00
Remove the I AM NOT DONE check
This commit is contained in:
parent
ea40804371
commit
c45d2c3255
@ -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…
x
Reference in New Issue
Block a user