PhlyTest\Mustache\MustacheTest::testTripleMustachesPreventEscaping PHP Method

testTripleMustachesPreventEscaping() public method

    public function testTripleMustachesPreventEscaping()
    {
        $view = array('foo' => 't&h\\e"s<e>');
        $test = $this->mustache->render('{{{foo}}}', $view);
        $this->assertEquals('t&h\\e"s<e>', $test);
    }
MustacheTest