brainstorm on missbehave on diet added by certainty on Mon Jan 21 11:57:24 2013


;; simple verification generates messages automatically
(verify 4 > 5)
(verify "foo" has 3 chars) ;; expands to (has "foo" 3 chars)

;; tags so that you can filter them
(tag ((foo bar) baz)
  (verify "yo" = "yo"))

;; set to pending
(pending
  (verify "yo" = "yo"))


;; optional explicit description
(desribe "some-feature"
  (verify 1 = 2))

(context "some-broader context to group tests"
  ;; add verifications)