PhlyTest\Mustache\MustacheTest::testAlternateDelimitersDoNotCarryToPartials PHP Method

testAlternateDelimitersDoNotCarryToPartials() public method

    public function testAlternateDelimitersDoNotCarryToPartials()
    {
        $test = $this->mustache->render('template-with-partials-and-delim-set', array('substitution' => 'style', 'value' => 1000000, 'taxed_value' => 400000));
        $expected = <<<EOT
This is content, style, from new delimiters.
You just won \$1000000 (which is \$400000 after tax)


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