juniper/integration_tests/juniper_tests/src/lib.rs
Christoph Herzog f02e427cab Refactor integration test layout + add minimal 2018 edition test
* Add a new integration_tests subdirectory that holds integration tests
* Add a new, temporary (and really minimal) 2018 edition test crate
2018-12-19 03:53:33 +01:00

13 lines
187 B
Rust

#[macro_use]
extern crate juniper;
#[cfg(test)]
#[macro_use]
extern crate serde_json;
#[cfg(test)]
extern crate fnv;
#[cfg(test)]
extern crate indexmap;
mod codegen;
mod custom_scalar;