/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
tests/View/Blade/BladeElseStatementsTest.php
36 строк
759 B
Lucas Michot
[5.5] Let PHPUnit setup Blade tests. (#19675)
19 июн 2017, 16:25
19 июн 2017, 16:25
59ee769
Код
Авторство
О чём код?
<?php namespace Illuminate\Tests\View\Blade; class BladeElseStatementsTest extends AbstractBladeTestCase { public function testElseStatementsAreCompiled() { $string = '@if (name(foo(bar))) breeze @else boom @endif'; $expected = '<?php if(name(foo(bar))): ?> breeze <?php else: ?> boom <?php endif; ?>'; $this->assertEquals($expected, $this->compiler->compileString($string)); } public function testElseIfStatementsAreCompiled() { $string = '@if(name(foo(bar))) breeze @elseif(boom(breeze)) boom @endif'; $expected = '<?php if(name(foo(bar))): ?> breeze <?php elseif(boom(breeze)): ?> boom <?php endif; ?>'; $this->assertEquals($expected, $this->compiler->compileString($string)); } }