Skip to content

Commit

Permalink
fix(tests): fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
COil committed Sep 30, 2023
1 parent bd2d7c6 commit 8a3021a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tests/Integration/Twig/Extension/MarkdowbExtensionTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

declare(strict_types=1);

namespace App\Tests\Integration\Twig\Extension;

use App\Twig\Extension\MarkdownExtension;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

final class MarkdowbExtensionTest extends KernelTestCase
{
public function testResponseExtension(): void
{
self::bootKernel();
$extension = $this->getContainer()->get(MarkdownExtension::class);
self::assertNotEmpty($extension->getFilters());
}
}

0 comments on commit 8a3021a

Please sign in to comment.