900e77862e
We would prefer to talk about a knowledge base on top of a database, but all the Datomic and DataScript code (and symbols, like :db/add, etc) refer to the "database of datoms", so let's roll with that nomenclature and try to be specific that the persistent storage-layer is SQLite. This will become more clear when we actually use SQLite's unique capabilities for text indexing.
16 lines
429 B
Clojure
16 lines
429 B
Clojure
(ns datomish.test
|
|
(:require
|
|
[doo.runner :refer-macros [doo-tests doo-all-tests]]
|
|
[cljs.test :as t :refer-macros [is are deftest testing]]
|
|
datomish.promise-sqlite-test
|
|
datomish.test.util
|
|
datomish.test.transforms
|
|
datomish.test.query
|
|
datomish.test-macros-test))
|
|
|
|
(doo-tests
|
|
'datomish.promise-sqlite-test
|
|
'datomish.test.util
|
|
'datomish.test.transforms
|
|
'datomish.test.query
|
|
'datomish.test-macros-test)
|