Skip to content

Commit

Permalink
Add todo spec test for libsass issue 2031
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Apr 22, 2016
1 parent b7e5eaf commit 98fb870
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions sass-spec/spec/libsass-todo-issues/issue_2031/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
:not(.asd, .qwe) {
content: test;
}
:not(.foo) {
content: test;
}
.bar, .baz {
@extend .foo;
}

test {
content: selector-extend(":not(.foo)", ".foo", ".bar");
}
13 changes: 13 additions & 0 deletions sass-spec/spec/libsass-todo-issues/issue_2031/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
:not(.asd, .qwe) {
content: test;
}
:not(.foo) {
content: test;
}
.bar, .baz {
@extend .foo;
}

test {
content: selector-extend(":not(.foo)", ".foo", ".bar");
}

0 comments on commit 98fb870

Please sign in to comment.