Bolt\Tests\Extension\SnippetsTest::testCommentsHandled PHP Метод

testCommentsHandled() публичный Метод

public testCommentsHandled ( )
    public function testCommentsHandled()
    {
        $this->markTestIncomplete('Update required');
        $template = $this->template . '<!-- This is a comment -->';
        $app = $this->getApp();
        $snip = '<meta name="test-snippet" />';
        $app['extensions']->insertSnippet('append', $snip);
        $html = $app['extensions']->processSnippetQueue($template);
        $this->assertEquals($template . $snip . PHP_EOL, $html);
    }