aboutsummaryrefslogtreecommitdiff
path: root/tests/vcomponent.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-03-07 15:31:00 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-03-07 20:29:14 +0100
commitf7716ac1a87649cad96242f2d5bf0a987d7f430c (patch)
treeb4b84951ef468fd644c42e9e0fee535d879f0387 /tests/vcomponent.scm
parentCleanup in (hnh util path). (diff)
downloadcalp-f7716ac1a87649cad96242f2d5bf0a987d7f430c.tar.gz
calp-f7716ac1a87649cad96242f2d5bf0a987d7f430c.tar.xz
Add new tests.
Diffstat (limited to 'tests/vcomponent.scm')
-rw-r--r--tests/vcomponent.scm16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/vcomponent.scm b/tests/vcomponent.scm
deleted file mode 100644
index acdb970b..00000000
--- a/tests/vcomponent.scm
+++ /dev/null
@@ -1,16 +0,0 @@
-;;; Commentary:
-;; Test that vcomponent parsing works at all.
-;;; Code:
-
-(((vcomponent base) prop)
- ((vcomponent formats ical parse) parse-calendar))
-
-(define ev (call-with-input-string
- "BEGIN:DUMMY
-X-KEY:value
-END:DUMMY"
- parse-calendar))
-
-(test-assert (eq? #f (prop ev 'MISSING)))
-(test-assert (prop ev 'X-KEY))
-(test-equal "value" (prop ev 'X-KEY))