Skip to content

Commit

Permalink
Add specs for issue 1422
Browse files Browse the repository at this point in the history
This PR add specs for sass/libsass#1422
  • Loading branch information
xzyfer committed Aug 4, 2015
1 parent bff2833 commit 991c8fd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1422/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.foo { foo: bar; }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.foo{foo:bar}
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_1422/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.foo {
foo: bar;
}
2 changes: 2 additions & 0 deletions spec/libsass-todo-issues/issue_1422/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.foo {
foo: bar; }
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_1422/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.foo {
foo: /*foo*/bar;
}

0 comments on commit 991c8fd

Please sign in to comment.