diff options
Diffstat (limited to 'tests/functional/test_foreach')
-rw-r--r-- | tests/functional/test_foreach/Test.php | 23 | ||||
-rw-r--r-- | tests/functional/test_foreach/test.tpl | 8 | ||||
-rw-r--r-- | tests/functional/test_foreach/want | 5 |
3 files changed, 36 insertions, 0 deletions
diff --git a/tests/functional/test_foreach/Test.php b/tests/functional/test_foreach/Test.php new file mode 100644 index 0000000..3f8cc73 --- /dev/null +++ b/tests/functional/test_foreach/Test.php @@ -0,0 +1,23 @@ +<?php + +namespace tests\functional\test_foreach; + +use kch42\ste\STECore; +use tests\functional\BaseTest; + +class Test extends BaseTest +{ + protected function getDirectory(): string + { + return __DIR__; + } + + protected function setUpSte(STECore $ste): void + { + $ste->vars["foo"] = array( + "a" => array("a" => 100, "b" => 200), + "b" => array("a" => 1, "b" => 2), + "c" => array("a" => 42, "b" => 1337) + ); + } +} diff --git a/tests/functional/test_foreach/test.tpl b/tests/functional/test_foreach/test.tpl new file mode 100644 index 0000000..1aec8b4 --- /dev/null +++ b/tests/functional/test_foreach/test.tpl @@ -0,0 +1,8 @@ +<ste:foreach array="foo" key="k" value="v" counter="i"> + $i: $k -> $v[a], $v[b] +</ste:foreach> +--- +<ste:foreach array="bar" value="v"> + $v + <ste:else>--empty--</ste:else> +</ste:foreach> diff --git a/tests/functional/test_foreach/want b/tests/functional/test_foreach/want new file mode 100644 index 0000000..5710bf7 --- /dev/null +++ b/tests/functional/test_foreach/want @@ -0,0 +1,5 @@ +0: a -> 100, 200 +1: b -> 1, 2 +2: c -> 42, 1337 +--- +--empty-- |