mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/10384] Update unit tests to test for failing variable.
PHPBB3-10384
This commit is contained in:
parent
fab0ec64b3
commit
fbb5c641b8
2 changed files with 7 additions and 5 deletions
|
@ -211,21 +211,21 @@ class phpbb_template_template_test extends phpbb_template_template_test_case
|
||||||
array(),
|
array(),
|
||||||
array(),
|
array(),
|
||||||
array(),
|
array(),
|
||||||
"{ VARIABLE }\n{ VARIABLE }",
|
"{ VARIABLE }\n{ 1_VARIABLE }\n{ VARIABLE }\n{ 1_VARIABLE }",
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'lang.html',
|
'lang.html',
|
||||||
array('L_VARIABLE' => "Value'"),
|
array('L_VARIABLE' => "Value'", 'L_1_VARIABLE' => "1 O'Clock"),
|
||||||
array(),
|
array(),
|
||||||
array(),
|
array(),
|
||||||
"Value'\nValue\'",
|
"Value'\n1 O'Clock\nValue\'\n1 O\'Clock",
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'lang.html',
|
'lang.html',
|
||||||
array('LA_VARIABLE' => "Value'"),
|
array('LA_VARIABLE' => "Value'", 'LA_1_VARIABLE' => "1 O'Clock"),
|
||||||
array(),
|
array(),
|
||||||
array(),
|
array(),
|
||||||
"{ VARIABLE }\nValue'",
|
"{ VARIABLE }\n{ 1_VARIABLE }\nValue'\n1 O'Clock",
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'loop_nested_multilevel_ref.html',
|
'loop_nested_multilevel_ref.html',
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
{L_VARIABLE}
|
{L_VARIABLE}
|
||||||
|
{L_1_VARIABLE}
|
||||||
|
|
||||||
{LA_VARIABLE}
|
{LA_VARIABLE}
|
||||||
|
{LA_1_VARIABLE}
|
||||||
|
|
Loading…
Add table
Reference in a new issue