]> Git — Sourcephile - haskell/symantic-http.git/blob - symantic-http-test/Hspec/Server.hs
Add raw combinator
[haskell/symantic-http.git] / symantic-http-test / Hspec / Server.hs
1 module Hspec.Server where
2
3 import Hspec.Utils
4 import qualified Hspec.Server.Error
5 import qualified Hspec.Server.Raw
6 import qualified Hspec.Server.Router
7
8 hspec :: IO [TestTree]
9 hspec = do
10 return . testGroup "Server"
11 <$> Hspec.Server.Error.hspec
12 <> Hspec.Server.Raw.hspec
13 <> Hspec.Server.Router.hspec