summaryrefslogtreecommitdiff
path: root/lib/WebCoso/Maker/RST.pm
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2015-09-05 16:21:29 +0100
committerdakkar <dakkar@thenautilus.net>2015-09-05 16:21:29 +0100
commit4078424b9105dba16c50087347b3a607cd75d4d1 (patch)
treebd81983e27be76dcb28254f26c5359be47a8aa8d /lib/WebCoso/Maker/RST.pm
parentmore tests (diff)
downloadWebCoso-p6-4078424b9105dba16c50087347b3a607cd75d4d1.tar.gz
WebCoso-p6-4078424b9105dba16c50087347b3a607cd75d4d1.tar.bz2
WebCoso-p6-4078424b9105dba16c50087347b3a607cd75d4d1.zip
first maker test
Diffstat (limited to 'lib/WebCoso/Maker/RST.pm')
-rw-r--r--lib/WebCoso/Maker/RST.pm7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/WebCoso/Maker/RST.pm b/lib/WebCoso/Maker/RST.pm
new file mode 100644
index 0000000..bf75ab1
--- /dev/null
+++ b/lib/WebCoso/Maker/RST.pm
@@ -0,0 +1,7 @@
+# -*- mode: perl6 -*-
+use WebCoso::Maker;
+class WebCoso::Maker::RST does WebCoso::Maker['rest.txt','du.xml'] {
+ method process-contents($rst) {
+ return "{$rst} parsed";
+ }
+}