commit | b24e47eacf279c6f379927ad73ff309533c2deb2 | [log] [tgz] |
---|---|---|
author | Alex Crichton <alex@alexcrichton.com> | Fri Jul 14 06:41:17 2017 -0700 |
committer | Alex Crichton <alex@alexcrichton.com> | Fri Jul 14 06:41:17 2017 -0700 |
tree | 8d41dde680b6c94e11dc1f39cfcb40ce00ee18b3 | |
parent | 401d7760086921e705e09b677dc844f23fbd5a02 [diff] |
Allow running tests on all channels
diff --git a/testcrate/src/lib.rs b/testcrate/src/lib.rs new file mode 100644 index 0000000..cdfbe1a --- /dev/null +++ b/testcrate/src/lib.rs
@@ -0,0 +1,6 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + } +}