mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 01:16:40 +00:00
9 lines
133 B
Haskell
9 lines
133 B
Haskell
|
import Test.Hspec
|
||
|
|
||
|
main :: IO ()
|
||
|
main =
|
||
|
hspec $
|
||
|
describe "hello-test" $
|
||
|
it "works" $
|
||
|
2 + 2 `shouldBe` (4 :: Int)
|