Skip to content

Commit

Permalink
Add specs for issue 1283
Browse files Browse the repository at this point in the history
This PR add specs for sass/libsass#1283
  • Loading branch information
xzyfer committed Jun 29, 2015
1 parent f34eb8b commit 02ba7b8
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1283/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.test { test: (1 2: 3, 2 1: 3); }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.test{test:(1 2: 3, 2 1: 3)}
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_1283/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.test {
test: (1 2: 3, 2 1: 3);
}
2 changes: 2 additions & 0 deletions spec/libsass-todo-issues/issue_1283/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.test {
test: (1 2: 3, 2 1: 3); }
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_1283/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
$map: map-merge((1 2: 3), (2 1: 3));

.test {
test: inspect($map);
}

0 comments on commit 02ba7b8

Please sign in to comment.