mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-15 20:06:31 +00:00
Added test case for issue #1143
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
--TEST--
|
||||
error in twig extension
|
||||
--TEMPLATE--
|
||||
{{ object.region is not null ? object.regionChoices[object.region] }}
|
||||
--DATA--
|
||||
class House
|
||||
{
|
||||
const REGION_S = 1;
|
||||
const REGION_P = 2;
|
||||
|
||||
public static $regionChoices = array(self::REGION_S => 'house.region.s', self::REGION_P => 'house.region.p');
|
||||
|
||||
public function getRegionChoices()
|
||||
{
|
||||
return self::$regionChoices;
|
||||
}
|
||||
}
|
||||
|
||||
$object = new House();
|
||||
$object->region = 1;
|
||||
return array('object' => $object)
|
||||
--EXPECT--
|
||||
house.region.s
|
||||
Reference in New Issue
Block a user