Skip to content

Instantly share code, notes, and snippets.

@justincampbell
Created January 2, 2013 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justincampbell/996d5207b527c6a25d59 to your computer and use it in GitHub Desktop.
Save justincampbell/996d5207b527c6a25d59 to your computer and use it in GitHub Desktop.
(ns diceapi.dice-spec
(:require [speclj.core :refer :all]))
(defn die [n]
(n))
(describe "die"
(it "returns its input"
(should= (die 6) 6)))
(run-specs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment