1
Fork 0
This repository has been archived on 2023-12-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2022FuncProg-project2-patience/test/VoorbeeldTest.hs
2022-10-24 21:19:06 +02:00

11 lines
244 B
Haskell

import Test.Hspec
import VoorbeeldModule (hoi, hallo)
main :: IO ()
main = hspec $ do
it "Returns correct string for hoi" $ do
hoi `shouldBe` "Hoi"
it "Returns correct string for hallo" $ do
hallo `shouldBe` "Hallo"