1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-18 11:31:35 +02:00

Remove outdated tests

This commit is contained in:
mo8it 2024-04-11 15:10:15 +02:00
parent e79bc727f0
commit 864cfa725b

View File

@ -11,26 +11,6 @@ fn fails_when_in_wrong_dir() {
.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]
fn run_single_compile_success() {
Command::cargo_bin("rustlings")
@ -81,19 +61,6 @@ fn run_single_test_not_passed() {
.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]
fn run_single_test_no_exercise() {
Command::cargo_bin("rustlings")