Skip to content

Commit be67ad9

Browse files
authored
[Function Name] Add tests (#2109)
1 parent e063f21 commit be67ad9

File tree

18 files changed

+1294
-408
lines changed

18 files changed

+1294
-408
lines changed

spec/css/functions/not_special.hrx

Lines changed: 72 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,77 @@
1-
<===> prefixed/type/input.scss
1+
<===> prefixed/lowercase/type/input.scss
22
a {b: -c-type(1 + 1)}
33

4-
<===> prefixed/type/output.css
4+
<===> prefixed/lowercase/type/output.css
55
a {
66
b: -c-type(2);
77
}
8+
9+
<===>
10+
================================================================================
11+
<===> prefixed/lowercase/and/input.scss
12+
a {b: -c-and(1 + 1)}
13+
14+
<===> prefixed/lowercase/and/output.css
15+
a {
16+
b: -c-and(2);
17+
}
18+
19+
<===>
20+
================================================================================
21+
<===> prefixed/lowercase/or/input.scss
22+
a {b: -c-or(1 + 1)}
23+
24+
<===> prefixed/lowercase/or/output.css
25+
a {
26+
b: -c-or(2);
27+
}
28+
29+
<===>
30+
================================================================================
31+
<===> prefixed/lowercase/not/input.scss
32+
a {b: -c-not(1 + 1)}
33+
34+
<===> prefixed/lowercase/not/output.css
35+
a {
36+
b: -c-not(2);
37+
}
38+
39+
<===>
40+
================================================================================
41+
<===> prefixed/uppercase/type/input.scss
42+
a {b: -C-TYPE(1 + 1)}
43+
44+
<===> prefixed/uppercase/type/output.css
45+
a {
46+
b: -C-TYPE(2);
47+
}
48+
49+
<===>
50+
================================================================================
51+
<===> prefixed/uppercase/and/input.scss
52+
a {b: -C-AND(1 + 1)}
53+
54+
<===> prefixed/uppercase/and/output.css
55+
a {
56+
b: -C-AND(2);
57+
}
58+
59+
<===>
60+
================================================================================
61+
<===> prefixed/uppercase/or/input.scss
62+
a {b: -C-OR(1 + 1)}
63+
64+
<===> prefixed/uppercase/or/output.css
65+
a {
66+
b: -C-OR(2);
67+
}
68+
69+
<===>
70+
================================================================================
71+
<===> prefixed/uppercase/not/input.scss
72+
a {b: -C-NOT(1 + 1)}
73+
74+
<===> prefixed/uppercase/not/output.css
75+
a {
76+
b: -C-NOT(2);
77+
}

spec/css/functions/special.hrx

Lines changed: 0 additions & 241 deletions
This file was deleted.

0 commit comments

Comments
 (0)