Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add specs for issue 2151 #893

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions spec/libsass-todo-issues/issue_2151/error
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
DEPRECATION WARNING on line 2 of /sass/spec/libsass-issues/issue_2151/input.scss: #{} interpolation near operators will be simplified in a future version of Sass. To preserve the current behavior, use quotes:

unquote("#{$v} + #{$v} + #{$v} + #{$v} + #{$v}")

You can use the sass-convert command to automatically fix most cases.
2 changes: 2 additions & 0 deletions spec/libsass-todo-issues/issue_2151/expected_output.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
a {
b: 1px + 1px + 1px + 1px + 1px; }
6 changes: 6 additions & 0 deletions spec/libsass-todo-issues/issue_2151/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
$v: 1px;
$b: #{$v} + #{$v} + #{$v} + #{$v} + #{$v};

a {
b: $b;
}