BladeSectionTest.php 417 B

123456789101112
  1. <?php
  2. namespace Illuminate\Tests\View\Blade;
  3. class BladeSectionTest extends AbstractBladeTestCase
  4. {
  5. public function testSectionStartsAreCompiled()
  6. {
  7. $this->assertSame('<?php $__env->startSection(\'foo\'); ?>', $this->compiler->compileString('@section(\'foo\')'));
  8. $this->assertSame('<?php $__env->startSection(name(foo)); ?>', $this->compiler->compileString('@section(name(foo))'));
  9. }
  10. }