summaryrefslogtreecommitdiff
path: root/www/www-test-data.el
diff options
context:
space:
mode:
Diffstat (limited to 'www/www-test-data.el')
-rw-r--r--www/www-test-data.el26
1 files changed, 15 insertions, 11 deletions
diff --git a/www/www-test-data.el b/www/www-test-data.el
index 19705c7..f6ef8aa 100644
--- a/www/www-test-data.el
+++ b/www/www-test-data.el
@@ -4,24 +4,28 @@
( print "publish-test-1" )
-( publish :data-projects ( list "test.pl" "example.org" ) )
+( let ( ( publication-instance ( publication-object ) ) )
+ ( publish publication-instance
+ :data-projects ( list "test.pl" "example.org" ) ) )
( print "publish-test-2" )
-( publish
+( let ( ( publication-instance ( publication-object ) ) )
+ ( publish publication-instance
- :data-projects
- ( list "test.pl"
+ :data-projects
+ ( list "test.pl"
- :property1
- "value1"
+ :property1
+ "value1"
- :property2
- "value2" ) )
+ :property2
+ "value2" ) ) )
( print "publish-test-3" )
-( publish "test.pl"
+( let ( ( publication-instance ( publication-object ) ) )
+ ( publish publication-instance "test.pl"
- :components
- ( list "example.pl" "example.org" ) )
+ :components
+ ( list "example.pl" "example.org" ) ) )