Skip to content

Commit

Permalink
Adding a unit test for #19
Browse files Browse the repository at this point in the history
  • Loading branch information
Cerdic committed Jul 12, 2019
1 parent 69df36c commit dedc9dc
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/inputs/comments.scss
Expand Up @@ -65,3 +65,11 @@ radius:#{$radius}
width: 100%;
}
}

.class {
/* This is a comment with vars references not on root level
color:#{$color}
and a fake #{ doing nothing
radius:#{$radius}
*/
}
7 changes: 7 additions & 0 deletions tests/outputs/comments.css
Expand Up @@ -40,3 +40,10 @@ radius:2px
display: block;
/* hop */
width: 100%; }

.class {
/* This is a comment with vars references not on root level
color:red
and a fake #{ doing nothing
radius:2px
*/ }
8 changes: 8 additions & 0 deletions tests/outputs_numbered/comments.css
Expand Up @@ -45,3 +45,11 @@ radius:2px
display: block;
/* hop */
width: 100%; }

/* line 69, inputs/comments.scss */
.class {
/* This is a comment with vars references not on root level
color:red
and a fake #{ doing nothing
radius:2px
*/ }

0 comments on commit dedc9dc

Please sign in to comment.