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:
Servant
Servant.Server
Servant.Server.CombinatorUtils
Servant.Server.Utils.CustomCombinators
Servant.Server.Experimental.Auth
Servant.Server.Internal
Servant.Server.Internal.BasicAuth
@ -133,7 +133,7 @@ test-suite spec
main-is: Spec.hs
other-modules:
Servant.ArbitraryMonadServerSpec
Servant.Server.CombinatorUtilsSpec
Servant.Server.Utils.CustomCombinatorsSpec
Servant.Server.ErrorSpec
Servant.Server.Internal.ContextSpec
Servant.Server.Internal.RoutingApplicationSpec

View file

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

View file

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