summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2019-07-14 05:58:05 +0200
committerEugen Wissner <belka@caraus.de>2019-07-14 05:58:05 +0200
commitf3b8d9b74ccd24521a9f15fe4bd47ab30830abfb (patch)
tree26e6b9dedc3efedaccb06d622af98b5f1e6a58a4 /tests
parenteb40810f25a2ab29e24c64f1e3c82b3b590460c8 (diff)
downloadgraphql-f3b8d9b74ccd24521a9f15fe4bd47ab30830abfb.tar.gz
Make all exports explicit
Diffstat (limited to 'tests')
-rw-r--r--tests/Test/StarWars/Data.hs18
-rw-r--r--tests/Test/StarWars/Schema.hs8
2 files changed, 24 insertions, 2 deletions
diff --git a/tests/Test/StarWars/Data.hs b/tests/Test/StarWars/Data.hs
index 5ceeb82..55ff207 100644
--- a/tests/Test/StarWars/Data.hs
+++ b/tests/Test/StarWars/Data.hs
@@ -1,5 +1,21 @@
{-# LANGUAGE OverloadedStrings #-}
-module Test.StarWars.Data where
+module Test.StarWars.Data
+ ( Character
+ , appearsIn
+ , artoo
+ , getDroid
+ , getDroid'
+ , getEpisode
+ , getFriends
+ , getHero
+ , getHeroIO
+ , getHuman
+ , id_
+ , homePlanet
+ , name
+ , secretBackstory
+ , typeName
+ ) where
import Data.Monoid (mempty)
import Control.Applicative ( Alternative(..)
diff --git a/tests/Test/StarWars/Schema.hs b/tests/Test/StarWars/Schema.hs
index 3cc34fd..101bbdf 100644
--- a/tests/Test/StarWars/Schema.hs
+++ b/tests/Test/StarWars/Schema.hs
@@ -1,6 +1,12 @@
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
-module Test.StarWars.Schema where
+module Test.StarWars.Schema
+ ( character
+ , droid
+ , hero
+ , human
+ , schema
+ ) where
import Control.Monad.Trans.Except (throwE)
import Control.Monad.Trans.Class (lift)