Skip to content

Commit

Permalink
Merge pull request #439 from xzyfer/feat/issue-1304
Browse files Browse the repository at this point in the history
Add specs for issue 1304
  • Loading branch information
xzyfer committed Jul 13, 2015
2 parents 29c5a9c + 2b6d9f6 commit 92946d2
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 0 deletions.
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_1304/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
foo { a: foo; }
foo > bar { b: foo > bar; }
foo > bar > baz { c: foo > bar > baz; }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo{a:foo}foo>bar{b:foo > bar}foo>bar>baz{c:foo > bar > baz}
9 changes: 9 additions & 0 deletions spec/libsass-todo-issues/issue_1304/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
foo {
a: foo;
}
foo > bar {
b: foo > bar;
}
foo > bar > baz {
c: foo > bar > baz;
}
6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_1304/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
foo {
a: foo; }
foo > bar {
b: foo > bar; }
foo > bar > baz {
c: foo > bar > baz; }
9 changes: 9 additions & 0 deletions spec/libsass-todo-issues/issue_1304/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
foo {
a:&;
> bar {
b:&;
> baz {
c:&;
}
}
}

0 comments on commit 92946d2

Please sign in to comment.