Guest User

Untitled

a guest
Jul 17th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. (ns liar-liar.test.core
  2. (:use [lazytest.describe :only (describe it do-it)])
  3. (:use [liar-liar.core]))
  4.  
  5. (describe parse-input "Parses input according to the spec"
  6. (binding [*command-line-args* ["the-arg"]]
  7. (it "reads the input from a file specified on the command line"
  8. (= "the-arg" (parse-input)))))
Add Comment
Please, Sign In to add comment