Gilbert Pellegrom 92b792e8f2 Initial commit.
2012-04-04 14:45:09 +01:00

12 lines
251 B
Plaintext
Executable File

--TEST--
"const" test
--TEMPLATE--
{{ 8 is constant('E_NOTICE') ? 'ok' : 'no' }}
{{ 'bar' is constant('Foo::BAR_NAME') ? 'ok' : 'no' }}
{{ value is constant('Foo::BAR_NAME') ? 'ok' : 'no' }}
--DATA--
return array('value' => 'bar');
--EXPECT--
ok
ok
ok