Skip to content

Commit ad83303

Browse files
committed
Add spec for inspect with nested list
Refs sass/libsass#2654
1 parent 2da92d7 commit ad83303

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

spec/core_functions/inspect.hrx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,6 +364,26 @@ a {
364364
type: string;
365365
}
366366

367+
<===>
368+
================================================================================
369+
<===> list/nested/options.yml
370+
---
371+
:todo:
372+
- libsass # sass/libsass#2654
373+
374+
<===> list/nested/input.scss
375+
a {
376+
$a: inspect([() (())]);
377+
a: $a;
378+
b: type-of($a);
379+
}
380+
381+
<===> list/nested/output.css
382+
a {
383+
a: [() ()];
384+
b: string;
385+
}
386+
367387
<===>
368388
================================================================================
369389
<===> map/input.scss

0 commit comments

Comments
 (0)