ScssphpFilterTest.php

Namespace

Assetic\Test\Filter

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Filter/ScssphpFilterTest.php
View source
<?php

/*
 * This file is part of the Assetic package, an OpenSky project.
 *
 * (c) 2010-2012 OpenSky Project Inc
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace Assetic\Test\Filter;

use Assetic\Asset\FileAsset;
use Assetic\Asset\StringAsset;
use Assetic\Filter\ScssphpFilter;

/**
 * @group integration
 */
class ScssphpFilterTest extends \PHPUnit_Framework_TestCase {
  protected function setUp() {
    $this->filter = new ScssphpFilter();
  }
  public function testFilterLoad() {
    $expected = <<<EOF
.foo .bar {
  width: 2; }

EOF;
    $asset = new StringAsset('.foo{.bar{width:1+ 1;}}');
    $asset
      ->load();
    $this->filter
      ->filterLoad($asset);
    $this
      ->assertEquals($expected, $asset
      ->getContent(), '->filterLoad() parses the content');
  }
  public function testImport() {
    $expected = <<<EOF
.foo {
  color: blue; }

.foo {
  color: red; }

EOF;
    $asset = new FileAsset(__DIR__ . '/fixtures/sass/main.scss');
    $asset
      ->load();
    $this->filter
      ->filterLoad($asset);
    $this
      ->assertEquals($expected, $asset
      ->getContent(), '->filterLoad() sets an include path based on source url');
  }

}

Classes

Namesort descending Description
ScssphpFilterTest @group integration