BladeEndSectionsTest.php 278 B

1234567891011
  1. <?php
  2. namespace Illuminate\Tests\View\Blade;
  3. class BladeEndSectionsTest extends AbstractBladeTestCase
  4. {
  5. public function testEndSectionsAreCompiled()
  6. {
  7. $this->assertSame('<?php $__env->stopSection(); ?>', $this->compiler->compileString('@endsection'));
  8. }
  9. }