123456789101112131415161718192021222324252627 |
- <?php
- namespace Illuminate\Tests\View\Blade;
- class BladeCommentsTest extends AbstractBladeTestCase
- {
- public function testCommentsAreCompiled()
- {
- $string = '{{--this is a comment--}}';
- $this->assertEmpty($this->compiler->compileString($string));
- $string = '{{--
- this is a comment
- --}}';
- $this->assertEmpty($this->compiler->compileString($string));
- $string = sprintf('{{-- this is an %s long comment --}}', str_repeat('extremely ', 1000));
- $this->assertEmpty($this->compiler->compileString($string));
- }
- public function testBladeCodeInsideCommentsIsNotCompiled()
- {
- $string = '{{-- @foreach() --}}';
- $this->assertEmpty($this->compiler->compileString($string));
- }
- }
|