Skip to content

Commit

Permalink
Merge pull request #340 from xzyfer/feat/issue-1115
Browse files Browse the repository at this point in the history
Add specs for issue 1115
  • Loading branch information
xzyfer committed Apr 23, 2015
2 parents d57aa67 + bdc76db commit c3458d5
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1115/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo { bar: "x\79"; baz: "xy"; bar: "x\a"; baz: "x\a"; }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo{bar:"x\79";baz:"xy";bar:"x\a";baz:"x\a"}
6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_1115/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
foo {
bar: "x\79";
baz: "xy";
bar: "x\a";
baz: "x\a";
}
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_1115/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
foo {
bar: "x\79";
baz: "xy";
bar: "x\a";
baz: "x\a"; }
6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_1115/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
foo {
bar: "x\79";
baz: "#{x}\79";
bar: "x\a";
baz: "#{x}\a";
}

0 comments on commit c3458d5

Please sign in to comment.