PhlyTest\Mustache\MustacheTest::testAllowsSpecifyingAlternateDelimiters PHP Method

testAllowsSpecifyingAlternateDelimiters() public method

    public function testAllowsSpecifyingAlternateDelimiters()
    {
        $test = $this->mustache->render('template-with-delim-set', array('substitution' => 'working'));
        $expected = <<<EOT
This is content, working, from new delimiters.

EOT;
        $this->assertEquals($expected, $test);
    }
MustacheTest