Re: What's your testing flow with the current clj tools?

2014-01-25 Thread Jay Fields
sorry, I forgot to mention you can you also expectations/run-all-tests (with or without a regex) if you're the kind of developer who likes to live in the repl. On Sat, Jan 25, 2014 at 8:19 AM, Jay Fields wrote: > I use emacs & expectations[1] > > These days I do more repl-driven-development than

Re: What's your testing flow with the current clj tools?

2014-01-25 Thread Stuart Sierra
I use tools.namespace to cleanly reload all source files which have changed, then ` clojure.test/run-all-tests` with a regex. -S On Saturday, January 25, 2014 12:57:

Re: What's your testing flow with the current clj tools?

2014-01-25 Thread Jay Fields
I use emacs & expectations[1] These days I do more repl-driven-development than test-driven-development, so the tests tend to come after solving the problem at hand. At that point I run all the tests via "lein expectations"[2] to get an idea of what's broken. Now that I know what test namespaces c

What's your testing flow with the current clj tools?

2014-01-24 Thread Alexandr Kurilin
I've been running my app's tests through `lein test` (most often for specific namespaces) for a long time now, but after reading Leiningen's recommendationto run them from the REPL I decided I should figure out how to make