diff options
Diffstat (limited to 'www/www-test-data.el')
-rw-r--r-- | www/www-test-data.el | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/www/www-test-data.el b/www/www-test-data.el new file mode 100644 index 0000000..19705c7 --- /dev/null +++ b/www/www-test-data.el @@ -0,0 +1,27 @@ +;; -*- lexical-binding: t; -*- + +( load "~/src/channel/www/build-site" ) + +( print "publish-test-1" ) + +( publish :data-projects ( list "test.pl" "example.org" ) ) + +( print "publish-test-2" ) + +( publish + + :data-projects + ( list "test.pl" + + :property1 + "value1" + + :property2 + "value2" ) ) + +( print "publish-test-3" ) + +( publish "test.pl" + + :components + ( list "example.pl" "example.org" ) ) |