forked from sass/sass-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add todo spec test for libsass issue 2156
- Loading branch information
Showing
10 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/sass/spec/libsass-issues/issue_2156/input.scss:1 DEBUG: "foo" | ||
/sass/spec/libsass-issues/issue_2156/input.scss:2 DEBUG: "foo" | ||
/sass/spec/libsass-issues/issue_2156/input.scss:3 DEBUG: "foo | ||
/sass/spec/libsass-issues/issue_2156/input.scss:4 DEBUG: "foo"bar | ||
/sass/spec/libsass-issues/issue_2156/input.scss:5 DEBUG: "foo" and "bar" |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@debug "\"foo\"" + ""; | ||
@debug "" + "\"foo\""; | ||
@debug "" + "\"foo"; | ||
@debug "\"foo\"" + "bar"; | ||
@debug unquote("\"foo\" and \"bar\""); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Error: "foo" and "bar" | ||
on line 1 of /sass/spec/libsass-issues/issue_2156/input.scss | ||
Use --trace for backtrace. |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@error unquote("\"foo\" and \"bar\""); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
65 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
WARNING: "foo" | ||
on line 7 of /sass/spec/libsass-issues/issue_2156/input.scss | ||
|
||
WARNING: "foo" | ||
on line 8 of /sass/spec/libsass-issues/issue_2156/input.scss | ||
|
||
WARNING: "foo | ||
on line 9 of /sass/spec/libsass-issues/issue_2156/input.scss | ||
|
||
WARNING: "foo"bar | ||
on line 10 of /sass/spec/libsass-issues/issue_2156/input.scss | ||
|
||
WARNING: "foo" and "bar" | ||
on line 11 of /sass/spec/libsass-issues/issue_2156/input.scss |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@warn "\"foo\"" + ""; | ||
@warn "" + "\"foo\""; | ||
@warn "" + "\"foo"; | ||
@warn "\"foo\"" + "bar"; | ||
@warn unquote("\"foo\" and \"bar\""); |