Hello
Hello, I´m trying to use it with speclj like: (defn mu [] "Some text") (spy-on (mu) (throw (Exception. "Other text"))) and (should-throw exception "Other text" (mu)). I´m doing it correctly? Regards
(defn mu [] "Some text")
(spy-on (mu) (throw (Exception. "Other text")))
(should-throw exception "Other text" (mu))