blob: a0727736e47daedfb831173083fa8e0f3fea2340 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
package com.vaadin.sass.testcases.scss;
import java.io.IOException;
import junit.framework.Assert;
import org.junit.Test;
import org.w3c.css.sac.CSSException;
import com.vaadin.sass.AbstractTestBase;
import com.vaadin.sass.internal.ScssStylesheet;
import com.vaadin.sass.internal.handler.SCSSDocumentHandler;
import com.vaadin.sass.internal.handler.SCSSDocumentHandlerImpl;
import com.vaadin.sass.internal.parser.Parser;
public class VariableGuarded extends AbstractTestBase {
String scss = "/scss/var-guarded.scss";
String css = "/css/var-guarded.css";
@Test
public void testParser() throws CSSException, IOException {
Parser parser = new Parser();
SCSSDocumentHandler handler = new SCSSDocumentHandlerImpl();
parser.setDocumentHandler(handler);
parser.parseStyleSheet(getClass().getResource(scss).getPath());
ScssStylesheet root = handler.getStyleSheet();
Assert.assertEquals(4, root.getChildren().size());
}
@Test
public void testCompiler() throws Exception {
testCompiler(scss, css);
Assert.assertEquals("Original CSS and parsed CSS doesn't match",
comparisonCss, parsedScss);
}
}
|