diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/functional/test_user_tag_returns_nothing/Test.php | 22 | ||||
-rw-r--r-- | tests/functional/test_user_tag_returns_nothing/test.tpl | 1 | ||||
-rw-r--r-- | tests/functional/test_user_tag_returns_nothing/want | 0 |
3 files changed, 23 insertions, 0 deletions
diff --git a/tests/functional/test_user_tag_returns_nothing/Test.php b/tests/functional/test_user_tag_returns_nothing/Test.php new file mode 100644 index 0000000..cd85908 --- /dev/null +++ b/tests/functional/test_user_tag_returns_nothing/Test.php @@ -0,0 +1,22 @@ +<?php + + +namespace tests\functional\test_user_tag_returns_nothing; + +use tests\functional\BaseTest; +use r7r\ste\STECore; + +class Test extends BaseTest +{ + protected function setUpSte(STECore $ste): void + { + $ste->register_tag('foobar', function ($ste, $params, $sub) { + // nop + }); + } + + protected function getDirectory(): string + { + return __DIR__; + } +} diff --git a/tests/functional/test_user_tag_returns_nothing/test.tpl b/tests/functional/test_user_tag_returns_nothing/test.tpl new file mode 100644 index 0000000..94799a8 --- /dev/null +++ b/tests/functional/test_user_tag_returns_nothing/test.tpl @@ -0,0 +1 @@ +<ste:foobar />
\ No newline at end of file diff --git a/tests/functional/test_user_tag_returns_nothing/want b/tests/functional/test_user_tag_returns_nothing/want new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/functional/test_user_tag_returns_nothing/want |