Skip to content

Commit

Permalink
Add specs for issue 1281
Browse files Browse the repository at this point in the history
This PR add specs for sass/libsass#1281
  • Loading branch information
xzyfer committed Jun 29, 2015
1 parent f34eb8b commit 032d70d
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1281/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.test { string: string; color: color; string: string; color: color; }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.test{string:string;color:color;string:string;color:color}
6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_1281/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.test {
string: string;
color: color;
string: string;
color: color;
}
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_1281/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.test {
string: string;
color: color;
string: string;
color: color; }
9 changes: 9 additions & 0 deletions spec/libsass-todo-issues/issue_1281/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
$quoted: "green";
$unquoted: green;

.test {
string: type-of($quoted);
color: type-of($unquoted);
string: type-of("green");
color: type-of(green);
}

0 comments on commit 032d70d

Please sign in to comment.