luminus

Jon Walch 2019-10-09T23:50:58.000600Z

Should I be able to HTTP GET static resources from the public folder with the default config? I'm getting a 404

Jon Walch 2019-10-09T23:54:31.001100Z

(deftest static-content
  (testing "can get static content"
    (let [{:keys [status] :as response}
          ((handler/app) (mock/request :get "/public/img/warning_clojure.png"))]
      (is (= 200 status)))
    )
  )
status is 404