init research

This commit is contained in:
2026-02-08 11:20:43 -10:00
commit bdf064f54d
3041 changed files with 1592200 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
(ns tech.v3.dataset.parser-test
(:require [tech.v3.dataset :as ds]
[tech.v3.dataset.protocols :as ds-proto]
[clojure.test :refer [deftest is]]))
(deftest all-missing-ds
(let [p (ds/dataset-parser)
_ (ds-proto/add-row p {})
ds @p]
(is (not (ds/dataset? ds)))
(is (= 1 (:tech.v3.dataset/row-count ds))
(= :all (:tech.v3.dataset/missing ds)))))