aboutsummaryrefslogtreecommitdiff
path: root/tests/prop.scm
blob: 64304301c42fa8d9fa45c9c0ece4fe82635583d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
(use-modules (vcomponent))

(define v (make-vcomponent
           (string-append (getenv "TESTPATH")
                          "/prop.ics")))

(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) (map car (properties (attr* v 'KEY))))