Skip to content

Commit

Permalink
Add specs for issue 1399
Browse files Browse the repository at this point in the history
This PR add specs for sass/libsass#1399
  • Loading branch information
xzyfer committed Jul 27, 2015
1 parent 466ea5a commit 809200d
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1399/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo { foo: 3-"bar"; foo: 3-"bar"; foo: 3 / "bar"; foo: 3/"bar"; }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo{foo:3-"bar";foo:3-"bar";foo:3 / "bar";foo:3/"bar"}
6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_1399/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
foo {
foo: 3-"bar";
foo: 3-"bar";
foo: 3 / "bar";
foo: 3/"bar";
}
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_1399/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
foo {
foo: 3-"bar";
foo: 3-"bar";
foo: 3 / "bar";
foo: 3/"bar"; }
6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_1399/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
foo {
foo: 3 - "bar";
foo: (3 - "bar");
foo: 3 / "bar";
foo: (3 / "bar");
}

0 comments on commit 809200d

Please sign in to comment.