Skip to content

Commit

Permalink
Add specs for issue 1482
Browse files Browse the repository at this point in the history
This PR add specs for sass/libsass#1482
  • Loading branch information
xzyfer committed Aug 24, 2015
1 parent 55cade1 commit 82b07bb
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 0 deletions.
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_1482/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
foo, bar__baz { color: red; }

bar__baz { color: blue; }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo,bar__baz{color:red}bar__baz{color:blue}
7 changes: 7 additions & 0 deletions spec/libsass-todo-issues/issue_1482/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
foo, bar__baz {
color: red;
}

bar__baz {
color: blue;
}
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_1482/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
foo, bar__baz {
color: red; }

bar__baz {
color: blue; }
10 changes: 10 additions & 0 deletions spec/libsass-todo-issues/issue_1482/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
foo {
color: red;
}

bar {
&__baz {
@extend foo;
color: blue;
}
}

0 comments on commit 82b07bb

Please sign in to comment.