mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-29 03:26:56 +00:00
19 lines
525 B
PHP
19 lines
525 B
PHP
<?php
|
|
|
|
namespace Twig\Extra\TwigExtraBundle\Tests;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
|
|
|
class IntegrationTest extends KernelTestCase
|
|
{
|
|
public function testCommonMarkRendering()
|
|
{
|
|
self::bootKernel();
|
|
|
|
$container = method_exists(self::class, 'getContainer') ? self::getContainer() : self::$container;
|
|
$rendered = $container->get('twig')->render('markdown_to_html.html.twig');
|
|
|
|
$this->assertStringContainsString('<h1>Hello <del>World</del></h1>', $rendered);
|
|
}
|
|
}
|