add sass nesting spec test verbatim

This commit is contained in:
ConnorSkees 2020-04-05 02:48:17 -04:00
parent b7b58c2ac6
commit 49d823c990

View File

@ -363,3 +363,8 @@ test!(
".a, .b {\n :not(&-d, :not(c)) {\n d: e\n }\n}\n",
":not(.a-d, :not(c), .b-d) {\n d: e;\n}\n"
);
test!(
sass_spec__nesting_parent_with_newline,
".foo,\n.bar {\n .baz & {\n color: red;\n }\n}\n",
".baz .foo,\n.baz .bar {\n color: red;\n}\n"
);