From 8d90e01b7ffa90519ce7393175ddd446c69fe84c Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Mon, 16 Oct 2017 18:22:27 +0200 Subject: allow simple functions calls in ET() and T() labels --- tests/autoprepend.t | 4 ++-- tests/it_text.t | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/autoprepend.t b/tests/autoprepend.t index bf40605..01da49e 100755 --- a/tests/autoprepend.t +++ b/tests/autoprepend.t @@ -9,13 +9,13 @@ $GLOBALS['it_text']->statictext = array( is( T('foo'), - "bar {v1}", + "bar ", "simple T()" ); is( T('foo', 'en'), - "qux {v1}", + "qux ", "simple T() with language" ); diff --git a/tests/it_text.t b/tests/it_text.t index bc4d5c0..5629d51 100755 --- a/tests/it_text.t +++ b/tests/it_text.t @@ -16,3 +16,6 @@ is(it_text::transmogrify("X{foo}{bar}", array('foo' => 1, 'bar' => 2)), "X12"); is(it_text::transmogrify("X{foo}", array('foo' => "&")), "X&"); is(it_text::transmogrify("X{x}", $obj), "Xattr"); is(it_text::transmogrify("X{y.z}", $obj), "Xattr"); +is(it_text::transmogrify("{mb_strlen(xxx)}", null, null, ['mb_strlen' => 1]), "3"); +is(it_text::transmogrify("{it::ucfirst(xxx)}", null, null, ['it::ucfirst' => 1]), "Xxx"); +is(it_text::transmogrify("{format violation}"), '{format violation}'); -- cgit v1.2.3