Skip to content

Commit

Permalink
Add spec test for libsass issue 1187
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed May 10, 2015
1 parent 2509bc3 commit 13daf44
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1187/expected.compact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Duplicate key "foo" in map ($a: 1, $b: 2).
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Duplicate key "foo" in map ($a: 1, $b: 2).
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1187/expected.expanded.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Duplicate key "foo" in map ($a: 1, $b: 2).
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1187/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Duplicate key "foo" in map ($a: 1, $b: 2).
11 changes: 11 additions & 0 deletions spec/libsass-todo-issues/issue_1187/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
$a: 'foo';
$b: 'foo';
$map: (
$a: 1,
$b: 2
);

.foo {
content: $a == $b;
content: inspect($map);
}

0 comments on commit 13daf44

Please sign in to comment.