mentat/test/datomish/test.cljs
Nick Alexander 900e77862e Implement database on top of SQLite connection. r=rnewman
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.
2016-07-13 12:37:23 -07:00

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)