Main.hs 154 B

1234567
  1. module Main where
  2. import Test.Hspec (describe, hspec, shouldBe)
  3. main :: IO ()
  4. main = hspec . describe "Trivial" . it "Always passes" $ (1 `shouldBe` 1)