Organizing test hierarchy in clojure project
- by Sergey
There are two directories in a clojure project - src/ and test/.
There's a file my_methods.clj in the src/calc/ directory which starts with
(ns calc.my_methods...).
I want to create a test file for it in test directory - test/my_methods-test.clj
(ns test.my_methods-test
(:require [calc.my_methods])
(:use clojure.test))
In the $CLASSPATH…