PhlyTest\Mustache\MustacheTest::testArrayValuesThatReferToPHPBuiltInsShouldNotCallThem PHP Method

testArrayValuesThatReferToPHPBuiltInsShouldNotCallThem() public method

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