class IssuesTest in Sassy 7
Same name in this branch
- 7 phamlp/tests/tests_compass.php \IssuesTest
- 7 phamlp/tests/tests_issues.php \IssuesTest
- 7 phamlp/tests/tests_ifs.php \IssuesTest
- 7 phamlp/tests/tests_extend.php \IssuesTest
- 7 phamlp/tests/tests_variables.php \IssuesTest
- 7 phamlp/tests/tests_interpolator.php \IssuesTest
Same name and namespace in other branches
- 7.3 phpsass/tests/tests_compass.php \IssuesTest
- 7.3 phpsass/tests/tests_issues.php \IssuesTest
- 7.3 phpsass/tests/tests_ifs.php \IssuesTest
- 7.3 phpsass/tests/tests_extend.php \IssuesTest
- 7.3 phpsass/tests/tests_variables.php \IssuesTest
- 7.3 phpsass/tests/tests_interpolator.php \IssuesTest
Hierarchy
- class \ScssUnitTest
- class \IssuesTest
Expanded class hierarchy of IssuesTest
File
- phamlp/
tests/ tests_ifs.php, line 5
View source
class IssuesTest extends ScssUnitTest {
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));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
IssuesTest:: |
public | function | ||
ScssUnitTest:: |
protected | property | ||
ScssUnitTest:: |
public | function | ||
ScssUnitTest:: |
public | function | ||
ScssUnitTest:: |
public | function |