mirror of
https://github.com/Ajetski/advent-of-code.git
synced 2025-09-30 13:03:19 -09:00
25 lines
367 B
Clojure
25 lines
367 B
Clojure
(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"))
|