1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-07-08 14:10:13 +00:00
Files
dotfiles/templates/haskell/test/Spec.hs
2022-07-04 19:17:58 -04:00

9 lines
133 B
Haskell

import Test.Hspec
main :: IO ()
main =
hspec $
describe "hello-test" $
it "works" $
2 + 2 `shouldBe` (4 :: Int)