Skip to content

Commit

Permalink
lispy-clojure-test.clj: Back to names with dashes
Browse files Browse the repository at this point in the history
Using `load-file' I can avoid messing with file names and classpath
and deps.edn just to well, load a file (e.g. via require).
  • Loading branch information
abo-abo committed Jan 13, 2018
1 parent b68784d commit 6ed6939
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -29,7 +29,7 @@ elisp:
$(QEMACS) lispy.el

clojure:
clojure -C:test -e '(load-file "lispy_clojure_test.clj")'
clojure -e '(load-file "lispy-clojure.clj")'

clean:
rm -f *.elc
Expand Down
1 change: 0 additions & 1 deletion lispy_clojure_test.clj → lispy-clojure-test.clj
Expand Up @@ -18,7 +18,6 @@
;; see <http://www.gnu.org/licenses/>.

(ns lispy-clojure-test
(:require [lispy-clojure :as l])
(:use [clojure.test :only [is deftest]]
[lispy-clojure :only [add-location-to-defn
debug-step-in
Expand Down
2 changes: 2 additions & 0 deletions lispy_clojure.clj → lispy-clojure.clj
Expand Up @@ -445,3 +445,5 @@ malleable to refactoring."
(compliment/completions
prefix
{:context :same :plain-candidates true}))

(load-file "lispy-clojure-test.clj")

0 comments on commit 6ed6939

Please sign in to comment.