BladeComponentFirstTest.php 514 B

123456789101112
  1. <?php
  2. namespace Illuminate\Tests\View\Blade;
  3. class BladeComponentFirstTest extends AbstractBladeTestCase
  4. {
  5. public function testComponentFirstsAreCompiled()
  6. {
  7. $this->assertSame('<?php $__env->startComponentFirst(["one", "two"]); ?>', $this->compiler->compileString('@componentFirst(["one", "two"])'));
  8. $this->assertSame('<?php $__env->startComponentFirst(["one", "two"], ["foo" => "bar"]); ?>', $this->compiler->compileString('@componentFirst(["one", "two"], ["foo" => "bar"])'));
  9. }
  10. }