Fix compiler warnings when testing

This commit is contained in:
Michael Macias 2017-01-18 04:02:09 -06:00
parent 907d78d41b
commit c7adbaede7
2 changed files with 6 additions and 2 deletions

View file

@ -1,4 +1,6 @@
//! Library tests and fixtures
pub mod model;
mod schema;
pub mod query_tests;
pub mod introspection_tests;
#[cfg(test)] mod query_tests;
#[cfg(test)] mod introspection_tests;

View file

@ -1,3 +1,5 @@
#![allow(missing_docs)]
use std::collections::HashMap;
#[derive(Copy, Clone, Eq, PartialEq, Debug)]