1 2 3 4 5 6 7 8 9 10 11
module Test.Spec import Specdris.Spec export specSuite : IO () specSuite = spec $ do describe "something trivial" $ it "should add two numbers correctly" $ 14 + 3 `shouldBe` 17