Move enum introspection tests to executor_tests

This commit is contained in:
theduke 2017-12-02 15:46:11 +01:00
parent 0e3c9940c6
commit 0024e67dae
3 changed files with 1 additions and 3 deletions

View file

@ -1,4 +1,5 @@
mod input_object;
mod enums;
// This asserts that the input objects defined public actually became public
#[allow(unused_imports)]
@ -9,8 +10,6 @@ use value::Value;
use schema::model::RootNode;
use types::scalars::EmptyMutation;
#[derive(GraphQLEnum)]
#[graphql(name = "SampleEnum", _internal)]
enum Sample {

View file

@ -4,7 +4,6 @@ mod field;
mod object;
mod interface;
mod union;
mod enums;