Skip to content

Commit

Permalink
Adding test for nested placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyom Semonov committed Nov 4, 2013
1 parent 18f405f commit a5b0ff9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions spec/libsass/placeholder-nested/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.foo {
width: 100px; }
.foo .bar {
height: 100px; }
13 changes: 13 additions & 0 deletions spec/libsass/placeholder-nested/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
%x {
width: 100px;

%y {
height: 100px;
}
}

.foo {
@extend %x;

.bar { @extend %y }
}

0 comments on commit a5b0ff9

Please sign in to comment.