summaryrefslogtreecommitdiff
path: root/tests/test_mktag
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2013-10-23 15:22:12 +0200
committerKevin Chabowski <kevin@kch42.de>2013-10-23 15:22:12 +0200
commit7ae08e3c35760fd7c5cb00d9a8a27488090f952d (patch)
tree0abc5b34d9de9d3257c39cd47bad2ee209e2d066 /tests/test_mktag
parentafaef24d4c358ebbbae551bcbd307da37a9d3fa7 (diff)
downloadste-7ae08e3c35760fd7c5cb00d9a8a27488090f952d.tar.gz
ste-7ae08e3c35760fd7c5cb00d9a8a27488090f952d.tar.bz2
ste-7ae08e3c35760fd7c5cb00d9a8a27488090f952d.zip
Added some tests.
Many of these break. Mostly because the way whitespace/newlines are added (or not added). This is terribly broken ATM... (It was okay with the old parser, I'll try to replicate that behaviour)
Diffstat (limited to 'tests/test_mktag')
-rw-r--r--tests/test_mktag/.gitignore3
-rw-r--r--tests/test_mktag/code.php5
-rw-r--r--tests/test_mktag/test.tpl12
-rw-r--r--tests/test_mktag/want1
4 files changed, 21 insertions, 0 deletions
diff --git a/tests/test_mktag/.gitignore b/tests/test_mktag/.gitignore
new file mode 100644
index 0000000..de2a41b
--- /dev/null
+++ b/tests/test_mktag/.gitignore
@@ -0,0 +1,3 @@
+have
+*.ast
+*.transc.php
diff --git a/tests/test_mktag/code.php b/tests/test_mktag/code.php
new file mode 100644
index 0000000..de8c553
--- /dev/null
+++ b/tests/test_mktag/code.php
@@ -0,0 +1,5 @@
+<?php
+
+function test_func($ste) {
+
+}
diff --git a/tests/test_mktag/test.tpl b/tests/test_mktag/test.tpl
new file mode 100644
index 0000000..c381ef4
--- /dev/null
+++ b/tests/test_mktag/test.tpl
@@ -0,0 +1,12 @@
+<ste:mktag name="double"><ste:calc>2 * <ste:tagcontent /></ste:calc></ste:mktag>
+<ste:mktag name="foo" mandatory="a|b">
+ <ste:set var="b">$_tag_parameters[b]</ste:set><ste:comment>Ugly hack, since STE does no scoping...</ste:comment>
+ <ste:for counter="i" start="0" stop="$_tag_parameters[a]">
+ <ste:if>
+ <ste:even>$i</ste:even>
+ <ste:then><ste:double>$i</ste:double></ste:then>
+ <ste:else>$b</ste:else>
+ </ste:if>
+ </ste:for>
+</ste:mktag>
+<ste:foo a="10" b="-" /> \ No newline at end of file
diff --git a/tests/test_mktag/want b/tests/test_mktag/want
new file mode 100644
index 0000000..be0b204
--- /dev/null
+++ b/tests/test_mktag/want
@@ -0,0 +1 @@
+0-4-8-12-16-20 \ No newline at end of file