We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71cd95e commit 5bc4413Copy full SHA for 5bc4413
test/orchard/java/resource_test.clj
@@ -8,6 +8,8 @@
8
9
(deftest project-resources-test
10
(testing "get the correct resources for the orchard project"
11
- (let [resources (resource/project-resources)]
+ (let [resources (->> (resource/project-resources)
12
+ (filter (fn [{:keys [relpath]}]
13
+ (= relpath "clojuredocs/test_export.edn"))))]
14
(is (= "clojuredocs/test_export.edn" (-> resources first :relpath)))
15
(is (= java.net.URL (-> resources first :url class))))))
0 commit comments