Skip to content

Commit

Permalink
Merge pull request #490 from xzyfer/feat/issue-1535
Browse files Browse the repository at this point in the history
Add specs for issue 1535
  • Loading branch information
xzyfer committed Sep 6, 2015
2 parents a9f49da + 5ce2066 commit 1211f2c
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/libsass-closed-issues/issue_1535/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo { test: list; test: 1 --em-2--em; test: 1 --em- 2 --em; test: 1 --em -2 --em; }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo{test:list;test:1 --em-2--em;test:1 --em- 2 --em;test:1 --em -2 --em}
6 changes: 6 additions & 0 deletions spec/libsass-closed-issues/issue_1535/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
foo {
test: list;
test: 1 --em-2--em;
test: 1 --em- 2 --em;
test: 1 --em -2 --em;
}
5 changes: 5 additions & 0 deletions spec/libsass-closed-issues/issue_1535/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
foo {
test: list;
test: 1 --em-2--em;
test: 1 --em- 2 --em;
test: 1 --em -2 --em; }
6 changes: 6 additions & 0 deletions spec/libsass-closed-issues/issue_1535/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
foo {
test: type-of(1--em);
test: (1--em-2--em);
test: (1--em- 2--em);
test: (1--em -2--em);
}

0 comments on commit 1211f2c

Please sign in to comment.