9 lines
204 B
Haskell
9 lines
204 B
Haskell
module HTTPure.HTTPureMSpec where
|
|
|
|
import Prelude (Unit, pure, unit)
|
|
import Test.Spec (Spec)
|
|
import Test.Spec.Runner (RunnerEffects)
|
|
|
|
httpureMSpec :: Spec (RunnerEffects ()) Unit
|
|
httpureMSpec = pure unit
|