Combine the test suites

This commit is contained in:
David Tolnay
2017-01-25 20:27:40 -08:00
parent dbdfe4f306
commit 3e1e42ef9b
19 changed files with 10 additions and 20 deletions
+7 -1
View File
@@ -1,7 +1,10 @@
#![cfg_attr(feature = "clippy", feature(plugin))]
#![cfg_attr(feature = "clippy", plugin(clippy))]
#![cfg_attr(feature = "unstable-testing", feature(non_ascii_idents))]
#![cfg_attr(feature = "unstable-testing", feature(test, non_ascii_idents))]
#[cfg(feature = "unstable-testing")]
extern crate test;
#[macro_use]
extern crate serde_derive;
@@ -18,3 +21,6 @@ mod test_de;
mod test_gen;
mod test_macros;
mod test_ser;
#[cfg(feature = "unstable-testing")]
mod compile_tests;