BladeStopSectionTest.php 273 B

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