renamed modules

This commit is contained in:
Sönke Hahn 2016-10-23 21:38:42 -04:00
parent 698ca2b430
commit e5f46e8ba0
3 changed files with 5 additions and 5 deletions

View file

@ -45,7 +45,7 @@ library
exposed-modules: exposed-modules:
Servant Servant
Servant.Server Servant.Server
Servant.Server.CombinatorUtils Servant.Server.Utils.CustomCombinators
Servant.Server.Experimental.Auth Servant.Server.Experimental.Auth
Servant.Server.Internal Servant.Server.Internal
Servant.Server.Internal.BasicAuth Servant.Server.Internal.BasicAuth
@ -133,7 +133,7 @@ test-suite spec
main-is: Spec.hs main-is: Spec.hs
other-modules: other-modules:
Servant.ArbitraryMonadServerSpec Servant.ArbitraryMonadServerSpec
Servant.Server.CombinatorUtilsSpec Servant.Server.Utils.CustomCombinatorsSpec
Servant.Server.ErrorSpec Servant.Server.ErrorSpec
Servant.Server.Internal.ContextSpec Servant.Server.Internal.ContextSpec
Servant.Server.Internal.RoutingApplicationSpec Servant.Server.Internal.RoutingApplicationSpec

View file

@ -4,7 +4,7 @@
{-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-} {-# LANGUAGE TypeOperators #-}
module Servant.Server.CombinatorUtils ( module Servant.Server.Utils.CustomCombinators (
CombinatorImplementation, CombinatorImplementation,
runCI, runCI,
makeCaptureCombinator, makeCaptureCombinator,

View file

@ -8,7 +8,7 @@
{-# LANGUAGE TypeOperators #-} {-# LANGUAGE TypeOperators #-}
{-# LANGUAGE UndecidableInstances #-} {-# LANGUAGE UndecidableInstances #-}
module Servant.Server.CombinatorUtilsSpec where module Servant.Server.Utils.CustomCombinatorsSpec where
import Control.Concurrent import Control.Concurrent
import Data.ByteString.Builder import Data.ByteString.Builder
@ -27,7 +27,7 @@ import Test.Hspec
import Servant.API import Servant.API
import Servant.Server import Servant.Server
import Servant.Server.CombinatorUtils import Servant.Server.Utils.CustomCombinators
runApp :: Application -> Request -> IO Response runApp :: Application -> Request -> IO Response
runApp app req = do runApp app req = do