123456789101112 |
- <?php
- namespace Illuminate\Tests\View\Blade;
- class BladeComponentFirstTest extends AbstractBladeTestCase
- {
- public function testComponentFirstsAreCompiled()
- {
- $this->assertSame('<?php $__env->startComponentFirst(["one", "two"]); ?>', $this->compiler->compileString('@componentFirst(["one", "two"])'));
- $this->assertSame('<?php $__env->startComponentFirst(["one", "two"], ["foo" => "bar"]); ?>', $this->compiler->compileString('@componentFirst(["one", "two"], ["foo" => "bar"])'));
- }
- }
|