summaryrefslogtreecommitdiff
path: root/devel-utf8/tests/autoprepend.t
diff options
context:
space:
mode:
authorNathan Gass2012-03-22 18:23:53 +0000
committerNathan Gass2012-03-22 18:23:53 +0000
commit338cda9000356404cf2865d61787607acf67fe98 (patch)
tree3924b3e2e12a5d5ea3b40890477d5e070498543c /devel-utf8/tests/autoprepend.t
parente0a89b408041d25b18090bfc3d596627ea930507 (diff)
downloaditools-338cda9000356404cf2865d61787607acf67fe98.tar.gz
itools-338cda9000356404cf2865d61787607acf67fe98.tar.bz2
itools-338cda9000356404cf2865d61787607acf67fe98.zip
last remains of wrong branch itools/live/devel-utf8 removed
Diffstat (limited to 'devel-utf8/tests/autoprepend.t')
-rwxr-xr-xdevel-utf8/tests/autoprepend.t38
1 files changed, 0 insertions, 38 deletions
diff --git a/devel-utf8/tests/autoprepend.t b/devel-utf8/tests/autoprepend.t
deleted file mode 100755
index bf40605..0000000
--- a/devel-utf8/tests/autoprepend.t
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/www/server/bin/php -qC
-<?php
-
-it_text::init();
-$GLOBALS['it_text']->statictext = array(
- '_' => array("de" => "Deutsch", "en" => "English"),
- 'foo' => array("de" => "bar {v1}", "en" => "qux {v1}"),
-);
-
-is(
- T('foo'),
- "bar {v1}",
- "simple T()"
-);
-
-is(
- T('foo', 'en'),
- "qux {v1}",
- "simple T() with language"
-);
-
-is(
- T('foo', array('v1' => "gna<bber")),
- "bar gna&lt;bber",
- "T() with quoted values"
-);
-
-is(
- T('foo', array('v1' => "gna<bber"), 'en'),
- "qux gna&lt;bber",
- "T() with with quoted values and language"
-);
-
-is(
- T('foo', 'en', array('v1' => "gna<bber")),
- "qux gna&lt;bber",
- "T() with with language and quoted values"
-);