我正在尝试从 IntelliJ 和“La Clojure”插件执行一个简单的 Clojure 测试。
当我尝试编译 Clojure 文件 (helloTest.clj) 时,我收到此错误:
Clojure Compiler: java.io.IOException: No such file or directory, compiling:(/ABSOLUTEPATH/helloTest.clj:1)
但是,当我通过终端检查绝对路径时,我可以看到 helloTest.clj 文件存在。
那么,如果文件存在,编译器怎么可能找不到文件呢?
以防万一,我添加了 helloTest.clj 文件的内容:
(ns com.nameofthepackage.helloTest
(:use clojure.test))
(deftest test1
(is (= 1 3)))
(deftest test2
(is (= 2 2)))