dotfiles/templates/haskell/test/Spec.hs

9 lines
133 B
Haskell
Raw Normal View History

2022-07-04 23:17:58 +00:00
import Test.Hspec
main :: IO ()
main =
hspec $
describe "hello-test" $
it "works" $
2 + 2 `shouldBe` (4 :: Int)