mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-10 13:10:40 +00:00
Fix tests
This commit is contained in:
parent
c1de4d46aa
commit
7090fffeae
7
.gitignore
vendored
7
.gitignore
vendored
@ -1,11 +1,10 @@
|
|||||||
*.swp
|
|
||||||
target/
|
target/
|
||||||
|
tests/fixture/*/Cargo.lock
|
||||||
|
|
||||||
|
*.swp
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
.DS_Store
|
.DS_Store
|
||||||
*.pdb
|
*.pdb
|
||||||
exercises/clippy/Cargo.toml
|
|
||||||
exercises/clippy/Cargo.lock
|
|
||||||
rust-project.json
|
|
||||||
.idea
|
.idea
|
||||||
.vscode/*
|
.vscode/*
|
||||||
!.vscode/extensions.json
|
!.vscode/extensions.json
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
exclude = [
|
||||||
|
"tests/fixture/failure",
|
||||||
|
"tests/fixture/state",
|
||||||
|
"tests/fixture/success",
|
||||||
|
]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "6.0.0"
|
version = "6.0.0"
|
||||||
|
21
tests/fixture/failure/Cargo.toml
Normal file
21
tests/fixture/failure/Cargo.toml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
[package]
|
||||||
|
name = "tests"
|
||||||
|
version = "0.0.0"
|
||||||
|
edition = "2021"
|
||||||
|
publish = false
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "compFailure"
|
||||||
|
path = "exercises/compFailure.rs"
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "compNoExercise"
|
||||||
|
path = "exercises/compNoExercise.rs"
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "testFailure"
|
||||||
|
path = "exercises/testFailure.rs"
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "testNotPassed"
|
||||||
|
path = "exercises/testNotPassed.rs"
|
17
tests/fixture/state/Cargo.toml
Normal file
17
tests/fixture/state/Cargo.toml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
[package]
|
||||||
|
name = "tests"
|
||||||
|
version = "0.0.0"
|
||||||
|
edition = "2021"
|
||||||
|
publish = false
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "pending_exercise"
|
||||||
|
path = "exercises/pending_exercise.rs"
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "pending_test_exercise"
|
||||||
|
path = "exercises/pending_test_exercise.rs"
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "finished_exercise"
|
||||||
|
path = "exercises/finished_exercise.rs"
|
13
tests/fixture/success/Cargo.toml
Normal file
13
tests/fixture/success/Cargo.toml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
[package]
|
||||||
|
name = "tests"
|
||||||
|
version = "0.0.0"
|
||||||
|
edition = "2021"
|
||||||
|
publish = false
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "compSuccess"
|
||||||
|
path = "exercises/compSuccess.rs"
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "testSuccess"
|
||||||
|
path = "exercises/testSuccess.rs"
|
Loading…
Reference in New Issue
Block a user