2016-07-11 23:48:40 +00:00
|
|
|
;; This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
(ns datomish.test-macros-test
|
|
|
|
(:require-macros
|
|
|
|
[datomish.pair-chan :refer [go-pair]]
|
|
|
|
[cljs.core.async.macros])
|
2016-07-13 23:16:31 +00:00
|
|
|
(:require
|
|
|
|
[datomish.test-macros :refer-macros [deftest-async]]
|
|
|
|
[cljs.core.async]
|
|
|
|
[cljs.test :refer-macros [is are deftest testing async]]))
|
2016-07-11 23:48:40 +00:00
|
|
|
|
|
|
|
(deftest sync-test
|
|
|
|
(is (= 1 1)))
|
|
|
|
|
|
|
|
(deftest-async async-test
|
|
|
|
(is (= 1 1)))
|