aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2018-09-04 09:05:57 -0400
committerPaul Duncan <pabs@pablotron.org>2018-09-04 09:05:57 -0400
commit9217fc6bc341059240c7d4b7f28e05717f45e9c9 (patch)
treec841cb8b0269d2eb8b59b3e609f20628b78902ea
parentc217077473f4e9539024d9c564eb9c7480aced30 (diff)
downloadluigi-template-9217fc6bc341059240c7d4b7f28e05717f45e9c9.tar.bz2
luigi-template-9217fc6bc341059240c7d4b7f28e05717f45e9c9.zip
remove template-test.php
-rw-r--r--php/template-test.php64
1 files changed, 0 insertions, 64 deletions
diff --git a/php/template-test.php b/php/template-test.php
deleted file mode 100644
index 01c91fd..0000000
--- a/php/template-test.php
+++ /dev/null
@@ -1,64 +0,0 @@
-<?php
-
-error_reporting(E_ALL | E_STRICT);
-
-require 'luigi-template.php';
-
-# build template string
-$template_str = join("\n", array(
- # test basic templates
- "%{greet}, %{name}!",
-
- # test filters and filters with parameters
- "Your name hashes to: %{
- name
- |
- hash
- sha1
- |
- uc
- }",
-
- # test custom filter
- "Your custom filtered name is: %{name|custom}",
-
- # test custom filter with arguments
- "Your custom_args name is: %{name|custom_args foo bar baz}",
-
- # test whitespace in filters
- "random test: %{name | hash sha512 | base64| uc }",
-
- # test pluralize filter
- 'pluralize test (0): %{count_0} item%{count_0 | s}',
- 'pluralize test (1): %{count_1} item%{count_1 | s}',
- 'pluralize test (10): %{count_10} item%{count_10 | s}',
-)) . "\n";
-
-Luigi\Filters::add(array(
- 'custom' => function() {
- return 'custom';
- },
-
- 'custom_args' => function($v, $args) {
- return join(',', array_map(function($arg) use ($v) {
- return "$arg$v";
- }, $args));
- },
-));
-
-# build template
-$t = new Luigi\Template($template_str);
-
-$args = array(
- 'greet' => 'hello',
- 'name' => 'paul',
- 'count_0' => 0,
- 'count_1' => 1,
- 'count_10' => 10,
-);
-
-# print results
-echo $t->run($args);
-
-# test static invocation
-echo Luigi\Template::run_once($template_str, $args);