Include! test suite for serde_derive

This commit is contained in:
David Tolnay
2016-09-01 21:28:40 -07:00
parent 87a402a751
commit 88d845c4d1
3 changed files with 14 additions and 0 deletions
+5
View File
@@ -16,3 +16,8 @@ rustc-macro = true
[dependencies]
serde_codegen = { version = "=0.8.5", path = "../serde_codegen" }
[dev-dependencies]
fnv = "1.0"
serde = { version = "0.8.5", path = "../serde" }
serde_test = { version = "0.8.5", path = "../serde_test" }
+1
View File
@@ -1,4 +1,5 @@
#![feature(rustc_macro, rustc_macro_lib)]
#![cfg(not(test))]
extern crate rustc_macro;
extern crate serde_codegen;
+8
View File
@@ -0,0 +1,8 @@
#![feature(test, rustc_macro, rustc_attrs)]
#[macro_use]
extern crate serde_derive;
extern crate test;
include!("../../testing/tests/test.rs.in");