PhlyTest\Mustache\MustacheTest::testObjectPropertiesThatReferToPHPBuiltInsShouldNotCallThem PHP Method

testObjectPropertiesThatReferToPHPBuiltInsShouldNotCallThem() public method

    public function testObjectPropertiesThatReferToPHPBuiltInsShouldNotCallThem()
    {
        $model = (object) array('message' => 'time');
        $test = $this->mustache->render('template-referencing-php-function', $model);
        $this->assertEquals('time', trim($test));
    }
MustacheTest