Skip to content

Commit

Permalink
Add specs for issue 1786
Browse files Browse the repository at this point in the history
This PR add specs for sass/libsass#1786
  • Loading branch information
xzyfer committed Dec 27, 2015
1 parent 110534a commit b9a82db
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/libsass-todo-issues/issue_1786/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@charset "UTF-8";
test { bug1: "_\a b"; bug2: "a �_ _ "; }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test{bug1:"_\a b";bug2:"a �_ _ "}
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_1786/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@charset "UTF-8";
test {
bug1: "_\a b";
bug2: "a �_ _ ";
}
4 changes: 4 additions & 0 deletions spec/libsass-todo-issues/issue_1786/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@charset "UTF-8";
test {
bug1: "_\a b";
bug2: "a �_ _ "; }
6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_1786/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
$input: "\0_\a_\A";

test {
bug1: "#{"_\a" + b}";
bug2: "#{a $input}";
}

0 comments on commit b9a82db

Please # to comment.