git.fiddlerwoaroof.com
Browse code

Testing updates

Fernando Borretti authored on 22/04/2015 22:30:28
Showing 2 changed files
... ...
@@ -4,7 +4,11 @@
4 4
   :description "cl-yaml tests."
5 5
   :depends-on (:cl-yaml
6 6
                :fiveam
7
-               :alexandria)
7
+               :alexandria
8
+               :yason
9
+               :generic-comparability
10
+               :cl-fad
11
+               :trivial-benchmark)
8 12
   :components ((:module "t"
9 13
                 :serial t
10 14
                 :components
... ...
@@ -12,4 +16,6 @@
12 16
                  (:file "scalar")
13 17
                  (:file "parser")
14 18
                  (:file "emitter")
19
+                 (:file "spec")
20
+                 (:file "bench")
15 21
                  (:file "cl-yaml")))))
... ...
@@ -7,3 +7,5 @@
7 7
 (run! 'cl-yaml-test.scalar:scalar)
8 8
 (run! 'cl-yaml-test.parser:parser)
9 9
 (run! 'cl-yaml-test.emitter:emitter)
10
+(run! 'cl-yaml-test.spec:spec)
11
+(run! 'cl-yaml-test.bench:bench)