Skip to content

Commit 48308df

Browse files
committed
Add specs for selector-unify()
See #1001
1 parent 94d83ec commit 48308df

20 files changed

+2022
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Simple selector unification generally relies heavily on superselector logic for
2+
determining when one selector can be omitted. Since this logic is already
3+
thoroughly tested in `is-superselector()`, it's not duplicated here, other than
4+
a few test cases to ensure that superselector logic is working at all.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<===> README.md
2+
These tests verify that, if one selector is a superselector of the other, the
3+
subselector is returned (since it's more specific).
4+
5+
<===>
6+
================================================================================
7+
<===> whole_selector/selector1/input.scss
8+
a {b: selector-unify("c", "d c.e")}
9+
10+
<===> whole_selector/selector1/output.css
11+
a {
12+
b: d c.e;
13+
}
14+
15+
<===>
16+
================================================================================
17+
<===> whole_selector/selector2/input.scss
18+
a {b: selector-unify("d c.e", "c")}
19+
20+
<===> whole_selector/selector2/output.css
21+
a {
22+
b: d c.e;
23+
}
24+
25+
<===>
26+
================================================================================
27+
<===> parent/selector1/input.scss
28+
a {b: selector-unify("c d", "c.e .f")}
29+
30+
<===> parent/selector1/output.css
31+
a {
32+
b: c.e d.f;
33+
}
34+
35+
<===>
36+
================================================================================
37+
<===> parent/selector2/input.scss
38+
a {b: selector-unify("c.e .f", "c d")}
39+
40+
<===> parent/selector2/output.css
41+
a {
42+
b: c.e d.f;
43+
}

0 commit comments

Comments
 (0)