aboutsummaryrefslogtreecommitdiff
path: root/tests/prop.scm
blob: a302d790677c960fab1461f9263f4e9e155fa67a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(((vcomponent base) prop attr* properties)
 ((vcomponent parse) parse-calendar)
 ((util) sort*))

(define v (call-with-input-string
              "BEGIN:VCOMPONENT
KEY;A=1;B=2:Some text
END:VCOMPONENT"
              parse-calendar))

(test-equal '("1") (prop (attr* v 'KEY) 'A))
(test-equal '("2") (prop (attr* v 'KEY) 'B))
(test-equal #f (prop (attr* v 'KEY) 'C))

(test-equal '(A B) (sort* (map car (properties (attr* v 'KEY)))
                          string<?
                          symbol->string))