summaryrefslogtreecommitdiff
path: root/tests/yaml.scm
blob: 767cdff45d46cb2f3838c5f56db9c46b6104b12a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(use-modules (ccwl yaml)
             (srfi srfi-64))

(test-begin "yaml")

(test-equal "dictionary entries with empty arrays and dictionaries for values must render on the same line"
  (scm->yaml-string
   '((foo . #())
     (bar)))
  "foo: []
bar: {}
")

(test-end "yaml")