aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-04-23 18:03:49 +0200
committerHugo Hörnquist <hugo@hornquist.se>2019-04-23 18:03:49 +0200
commit8f4fbcd493e28c86c598efcecdb6dc79d8fe0bfe (patch)
tree37e49d78df0916efcb0d547e0b28b63247cfec3d /tests
parentChange event-length => event-length/day. (diff)
downloadcalp-8f4fbcd493e28c86c598efcecdb6dc79d8fe0bfe.tar.gz
calp-8f4fbcd493e28c86c598efcecdb6dc79d8fe0bfe.tar.xz
Rename module vcalendar => vcomponent.
Diffstat (limited to 'tests')
-rw-r--r--tests/prop.scm2
-rw-r--r--tests/recurring.scm6
-rw-r--r--tests/rrule-parse.scm4
3 files changed, 6 insertions, 6 deletions
diff --git a/tests/prop.scm b/tests/prop.scm
index 249dd21b..64304301 100644
--- a/tests/prop.scm
+++ b/tests/prop.scm
@@ -1,4 +1,4 @@
-(use-modules (vcalendar))
+(use-modules (vcomponent))
(define v (make-vcomponent
(string-append (getenv "TESTPATH")
diff --git a/tests/recurring.scm b/tests/recurring.scm
index 3439f7ff..331343c6 100644
--- a/tests/recurring.scm
+++ b/tests/recurring.scm
@@ -4,9 +4,9 @@
(srfi srfi-41)
(util)
- (vcalendar)
- (vcalendar output)
- (vcalendar recurrence))
+ (vcomponent)
+ (vcomponent output)
+ (vcomponent recurrence))
(define (display-timespan ev)
(format #t "~a -- ~a~%"
diff --git a/tests/rrule-parse.scm b/tests/rrule-parse.scm
index f620e882..7612afc8 100644
--- a/tests/rrule-parse.scm
+++ b/tests/rrule-parse.scm
@@ -1,9 +1,9 @@
-(use-modules (vcalendar recurrence parse))
+(use-modules (vcomponent recurrence parse))
(define-syntax mkrule
(syntax-rules ()
((_ (key val) ...)
- ((record-constructor (@@ (vcalendar recurrence internal) <recur-rule>)
+ ((record-constructor (@@ (vcomponent recurrence internal) <recur-rule>)
(quote (key ...)))
(quote val) ...))))