testSpec "testing lists" $describe "Prelude.head" $ do it "returns the first element of a list" $ do head [23 ..]shouldBe` (23 :: Int) it "throws an exception if the list is empty" $ head [] `shouldThrow` anyException