Merge pull request #1526 from TheShiftExchange/blade_e

Automatically apply entities to output using Blade
This commit is contained in:
Taylor Otwell
2013-01-05 11:44:54 -08:00
2 changed files with 6 additions and 0 deletions

View File

@@ -13,9 +13,13 @@ class BladeTest extends PHPUnit_Framework_TestCase {
{
$blade1 = '{{$a}}';
$blade2 = '{{e($a)}}';
$blade3 = '{{{$a}}}';
$blade4 = '{{{e($a)}}}';
$this->assertEquals('<?php echo $a; ?>', Blade::compile_string($blade1));
$this->assertEquals('<?php echo e($a); ?>', Blade::compile_string($blade2));
$this->assertEquals('<?php echo HTML::entities($a); ?>', Blade::compile_string($blade3));
$this->assertEquals('<?php echo HTML::entities(e($a)); ?>', Blade::compile_string($blade4));
}
/**