You are here

public function IssuesTest::test_interpolator01 in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/tests/tests_interpolator.php \IssuesTest::test_interpolator01()

File

phamlp/tests/tests_interpolator.php, line 7

Class

IssuesTest

Code

public function test_interpolator01() {
  $source = <<<END
@mixin test(\$testl) {
  #{\$testl} {
    width: 900px;
  }
}
@include test("body");
END;
  $expected = <<<END
body {
  width: 900px;
}
END;
  $this
    ->assertScss($source, $expected);
}