Skip to content

Commit

Permalink
Merge pull request #410 from mgreter/test/issue_1253
Browse files Browse the repository at this point in the history
Add missing todo spec tests for issue 1219
  • Loading branch information
mgreter committed Jun 13, 2015
2 parents 12e93b7 + 67c0365 commit f34eb8b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/libsass-todo-issues/issue_1219/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/* one.css */
@media screen and (min-width: 0\0) { .bar { width: 12px; } }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@media screen and (min-width: 0\0){.bar{width:12px}}
6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_1219/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* one.css */
@media screen and (min-width: 0\0) {
.bar {
width: 12px;
}
}
4 changes: 4 additions & 0 deletions spec/libsass-todo-issues/issue_1219/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* one.css */
@media screen and (min-width: 0\0) {
.bar {
width: 12px; } }
6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_1219/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* one.css */
@media screen and (min-width:0\0) {
.bar {
width: 12px;
}
}

0 comments on commit f34eb8b

Please sign in to comment.