12 lines
296 B
Haskell
12 lines
296 B
Haskell
import Test.Hspec (Spec, it, shouldBe)
|
|
import Test.Hspec.Runner (configFastFail, defaultConfig, hspecWith)
|
|
|
|
import HelloWorld (hello)
|
|
|
|
main :: IO ()
|
|
main = hspecWith defaultConfig {configFastFail = True} specs
|
|
|
|
specs :: Spec
|
|
specs = it "hello" $
|
|
hello `shouldBe` "Hello, World!"
|