Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
17 | public function testIssuesWithMathOffAsDefault() |
||
18 | { |
||
19 | $parser = new Parser(); |
||
20 | |||
21 | $parser->parseString( |
||
22 | 'body { total-width: (1 * 6em * 12) + (2em * 12); }' |
||
23 | ); |
||
24 | |||
25 | $css = $parser->getCSS(); |
||
26 | |||
27 | $expected = 'body { |
||
28 | total-width: 96em; |
||
29 | } |
||
30 | '; |
||
31 | |||
32 | $this->assertEquals($expected, $css); |
||
33 | } |
||
34 | |||
54 |