From 4e2bfed23c17929795f2082d6e77937170caeaa9 Mon Sep 17 00:00:00 2001 From: Laria Carolin Chabowski Date: Sun, 13 Sep 2020 21:35:16 +0200 Subject: Turn our functional tests into PhpUnit tests --- tests/functional/test_foreach/Test.php | 23 +++++++++++++++++++++++ tests/functional/test_foreach/test.tpl | 8 ++++++++ tests/functional/test_foreach/want | 5 +++++ 3 files changed, 36 insertions(+) create mode 100644 tests/functional/test_foreach/Test.php create mode 100644 tests/functional/test_foreach/test.tpl create mode 100644 tests/functional/test_foreach/want (limited to 'tests/functional/test_foreach') 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 @@ +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 @@ + + $i: $k -> $v[a], $v[b] + +--- + + $v + --empty-- + 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-- -- cgit v1.2.3-54-g00ecf