Fork me on GitHub
#spacemacs
<
2015-10-16
>
bordeltabernacle10:10:49

Hi, would anyone know the best way to run Clojure tests in Spacemacs?

bordeltabernacle10:10:27

I'm trying to work on the exercises at http://exercism.io and when I follow their suggestions I get the following error

bordeltabernacle10:10:43

bob-test> (load-file bob-test.clj)
CompilerException java.lang.ClassNotFoundException: bob-test.clj, compiling:(/tmp/form-init7323770406609653905.clj:1:1) 

griffio12:10:42

@bordeltabernacle: Also the exercism example should be (load-file “bob_test.clj”). Assumes file name is underscored and namespace is (ns bob-test). That works.

bordeltabernacle12:10:16

@griffio: hey, thanks, yeah I was missing the quotes and the underscore, got it working now. i'm new to both clojure & emacs and haven't settled into a workflow with them yet.