WIP; init shared clj lib

This commit is contained in:
Adam Jeniski
2024-12-25 12:10:32 -05:00
parent 9064515faf
commit bef47f68b7
4 changed files with 232 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
(ns core-test
(:require [core :as c]
[clojure.test :refer :all :as t]))
(comment
(use 'clojure.repl)
#_{:clj-kondo/ignore [:unresolved-symbol]}
(dir c)
(run-tests)
;
)
(deftest math-test
(testing "math utils"
(is (= 1 1))))
(deftest utils-test
(testing "general utils"))
(deftest coll-lib-test
(testing "alter coll utils"))