Unit testing in Clojure is straightforward. Here are a few testing ideas as they apply to Clojure.
Mini Guides
Small, precise guides to a particular feature.
Hiccup Tips
Hiccup is a Clojure DSL for generating HTML. If you’re using it, you might like these tips.
How can you test ClojureScript applications and libraries?
Although it’s still early, ClojureScript is rapidly maturing its testing story. There are a Leiningen plugin and a Boot task for autocompiling ClojureScript as it changes and running tests in a variety of engines.
How I made my Clojure database tests 5x faster
Setting up and tearing down a test database can be slow. Use a rolled back transaction to quickly reset the database to a known state. You can do that in an `:each` fixture to run each test in isolation.
How to Read Clojure Code Like an Expert
As you get better with Clojure, it becomes easier to read. Why not jump ahead of the learning curve and read like an expert? Focus on the first thing, use the indentation, and read the evaluation order.
How to Use New Relic with Clojure on Heroku
New Relic lets you get more out of Heroku. Install it in 7 steps.