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 authored and saper committed Sep 21, 2015
1 parent ffae717 commit 6d15290
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions spec/libsass-todo-issues/issue_1187/error
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Error: Duplicate key "foo" in map ($a: 1, $b: 2).
on line 3 of /home/saper/sw/libsass/sass-spec/spec/libsass-todo-issues/issue_1187/input.scss
Use --trace for backtrace.
Empty file.
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);
}
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_1187/status
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
65

0 comments on commit 6d15290

Please sign in to comment.