Begin update to 1.1.0.

This commit is contained in:
Calvin Rose
2019-07-08 18:16:17 -05:00
parent 0dcae6c3d6
commit 3928136670
7 changed files with 30 additions and 6 deletions
+8
View File
@@ -105,4 +105,12 @@
(def res (resume f))
(assert-error :abc (propagate res f) "propagate 1")
# table/clone
(defn check-table-clone [x msg]
(assert (= (table/to-struct x) (table/to-struct (table/clone x))) msg))
(check-table-clone @{:a 123 :b 34 :c :hello : 945 0 1 2 3 4 5} "table/clone 1")
(check-table-clone @{} "table/clone 1")
(end-suite)