mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-21 21:42:23 -05:00
Remove outdated tests
This commit is contained in:
parent
e79bc727f0
commit
864cfa725b
1 changed files with 0 additions and 33 deletions
|
@ -11,26 +11,6 @@ fn fails_when_in_wrong_dir() {
|
||||||
.code(1);
|
.code(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[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]
|
#[test]
|
||||||
fn run_single_compile_success() {
|
fn run_single_compile_success() {
|
||||||
Command::cargo_bin("rustlings")
|
Command::cargo_bin("rustlings")
|
||||||
|
@ -81,19 +61,6 @@ fn run_single_test_not_passed() {
|
||||||
.code(1);
|
.code(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[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]
|
#[test]
|
||||||
fn run_single_test_no_exercise() {
|
fn run_single_test_no_exercise() {
|
||||||
Command::cargo_bin("rustlings")
|
Command::cargo_bin("rustlings")
|
||||||
|
|
Loading…
Reference in a new issue