Merge pull request #20 from zaeleus/warnings

Fix compiler warnings when testing
This commit is contained in:
Magnus Hallin 2017-02-04 10:16:06 +01:00 committed by GitHub
commit 555962c915
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)]