Skip to content

Commit

Permalink
Add more cases
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyfer committed Jan 2, 2017
1 parent afc7e51 commit de87deb
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
6 changes: 5 additions & 1 deletion spec/sass_3_5/change-equality-of-lists/expected_output.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
a {
f1: f;
t1: t;
f2: f;
f3: f;
t4: t;
f5: f;
}
26 changes: 25 additions & 1 deletion spec/sass_3_5/change-equality-of-lists/input.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,31 @@
a {
@if [1,2,3]==(1,2,3) {
@if [foo bar]==[foo bar] {
t1: t;
} @else {
f1: f;
}

@if [foo bar]==[foo, bar] {
t2: t;
} @else {
f2: f;
}

@if [foo bar]==(foo bar) {
t3: t;
} @else {
f3: f;
}

@if [] == [] {
t4: t;
} @else {
f4: f;
}

@if [] == () {
t5: t;
} @else {
f5: f;
}
}

0 comments on commit de87deb

Please sign in to comment.