public function IssuesTest::test_ifs in Sassy 7
Same name and namespace in other branches
- 7.3 phpsass/tests/tests_ifs.php \IssuesTest::test_ifs()
File
- phamlp/
tests/ tests_ifs.php, line 7
Class
Code
public function test_ifs() {
$tests = array(
'{ @if #ccc {color: #111; } }' => 'color: #111111;',
'{ @if 123 {color: #222; } }' => 'color: #222222;',
'{ @if true {color: #333; } }' => 'color: #333333;',
'{ @if "test" {color: #444; } }' => 'color: #444444;',
'{ @if 0 {color: #555; } }' => '',
'{ @if 0 {color: #666; } @else {color: #777; } }' => 'color: #777777;',
);
$this
->assertScss(array_keys($tests), array_values($tests));
}