diff options
| author | mo8it <mo8it@proton.me> | 2024-04-27 23:38:38 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-04-27 23:38:38 +0200 |
| commit | c45d2c3255b6b606debfd16ef135f64f31f604d7 (patch) | |
| tree | 770be1f9070b30ec9c60affef36687ed7bdecb62 | |
| parent | ea40804371d073730e7b5f6258d2a825c544c0b1 (diff) | |
Remove the I AM NOT DONE check
| -rw-r--r-- | tests/integration_tests.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index f81cc94..7d30467 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -1,5 +1,4 @@ use assert_cmd::prelude::*; -use predicates::boolean::PredicateBooleanExt; use std::process::Command; #[test] @@ -110,8 +109,7 @@ fn run_compile_exercise_does_not_prompt() { .args(["run", "pending_exercise"]) .current_dir("tests/fixture/state") .assert() - .code(0) - .stdout(predicates::str::contains("I AM NOT DONE").not()); + .code(0); } #[test] @@ -121,8 +119,7 @@ fn run_test_exercise_does_not_prompt() { .args(["run", "pending_test_exercise"]) .current_dir("tests/fixture/state") .assert() - .code(0) - .stdout(predicates::str::contains("I AM NOT DONE").not()); + .code(0); } #[test] |
