Skip to content

Instantly share code, notes, and snippets.

@andrewsmedina
Created February 28, 2011 02:02
Show Gist options
  • Save andrewsmedina/846822 to your computer and use it in GitHub Desktop.
Save andrewsmedina/846822 to your computer and use it in GitHub Desktop.
import Test.Hspec
main :: IO()
main = do hspec specs
specs = describe "myabs" [
it "foo"
(myabs 1 == 1)
]
myabs n = undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment