summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/integration_tests.rs33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs
index 51cdefb..f81cc94 100644
--- a/tests/integration_tests.rs
+++ b/tests/integration_tests.rs
@@ -12,26 +12,6 @@ fn fails_when_in_wrong_dir() {
}
#[test]
-fn verify_all_success() {
- Command::cargo_bin("rustlings")
- .unwrap()
- .arg("verify")
- .current_dir("tests/fixture/success")
- .assert()
- .success();
-}
-
-#[test]
-fn verify_fails_if_some_fails() {
- Command::cargo_bin("rustlings")
- .unwrap()
- .arg("verify")
- .current_dir("tests/fixture/failure")
- .assert()
- .code(1);
-}
-
-#[test]
fn run_single_compile_success() {
Command::cargo_bin("rustlings")
.unwrap()
@@ -82,19 +62,6 @@ fn run_single_test_not_passed() {
}
#[test]
-fn run_single_test_no_filename() {
- Command::cargo_bin("rustlings")
- .unwrap()
- .arg("run")
- .current_dir("tests/fixture/")
- .assert()
- .code(2)
- .stderr(predicates::str::contains(
- "required arguments were not provided",
- ));
-}
-
-#[test]
fn run_single_test_no_exercise() {
Command::cargo_bin("rustlings")
.unwrap()