Skip to content

Commit

Permalink
Add missing todo spec tests for issue 1253
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Jun 13, 2015
1 parent d874627 commit fcc5d2e
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/libsass-todo-issues/issue_1253/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@keyframes $foo { from { a: b; }
to { a: c; } }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@keyframes $foo{from{a:b}to{a:c}}
8 changes: 8 additions & 0 deletions spec/libsass-todo-issues/issue_1253/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@keyframes $foo {
from {
a: b;
}
to {
a: c;
}
}
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_1253/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@keyframes $foo {
from {
a: b; }
to {
a: c; } }
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_1253/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
$foo: bar;
@keyframes $foo {
from { a: b }
to { a: c }
}

0 comments on commit fcc5d2e

Please sign in to comment.