Modify integration tests to fail on panic

This commit is contained in:
Chris Pearce
2019-04-07 17:49:34 +01:00
parent fbd0ccbd5b
commit 3d11d7685b
8 changed files with 51 additions and 7 deletions

View File

@@ -0,0 +1,2 @@
fn main() {
}

View File

@@ -0,0 +1,7 @@
[[exercises]]
path = "compSuccess.rs"
mode = "compile"
[[exercises]]
path = "testSuccess.rs"
mode = "test"

View File

@@ -0,0 +1,4 @@
#[test]
fn passing() {
assert!(true);
}