Skip to content

Instantly share code, notes, and snippets.

@symbiont-eric-torreborre
Created May 12, 2020 07:53
Show Gist options
  • Save symbiont-eric-torreborre/7d012c8accbdf9c5a4eeeb084b00988a to your computer and use it in GitHub Desktop.
Save symbiont-eric-torreborre/7d012c8accbdf9c5a4eeeb084b00988a to your computer and use it in GitHub Desktop.

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment