More testing. Removed Gitea actions.
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
20
tests/Template/TwigTest.php
Normal file
20
tests/Template/TwigTest.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Tests;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use App\Template\Twig;
|
||||
use Twig\TwigFilter;
|
||||
|
||||
final class TwigTest extends \PHPUnit\Framework\TestCase
|
||||
{
|
||||
public function testInstance(): void
|
||||
{
|
||||
$obj = new Twig(['template' => 'start {{ var }} end']);
|
||||
$template = $obj->load('template');
|
||||
$output = $template->render(['var' => 'middle']);
|
||||
$this->assertEquals('start middle end', $output);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user