Skip to content

Commit 9f87a43

Browse files
committed
Add todo spec test for libsass issue 2236
sass/libsass#2236
1 parent 52ddfbc commit 9f87a43

File tree

7 files changed

+40
-0
lines changed

7 files changed

+40
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.foo {
2+
test-01: 1.2;
3+
test-02: -3.5;
4+
test-03: 3.5;
5+
test-04: -1.2;
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.foo {
2+
test-01: +1.2 % +4.7;
3+
test-02: +1.2 % -4.7;
4+
test-03: -1.2 % +4.7;
5+
test-04: -1.2 % -4.7;
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.foo {
2+
test-01: 1;
3+
test-02: -3;
4+
test-03: 3;
5+
test-04: -1;
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.foo {
2+
test-01: +1 % +4;
3+
test-02: +1 % -4;
4+
test-03: -1 % +4;
5+
test-04: -1 % -4;
6+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
:start_version: '3.4'
3+
:todo:
4+
- dart-sass
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.foo {
2+
test-01: 0;
3+
test-02: 0;
4+
test-03: 0;
5+
test-04: 0;
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.foo {
2+
test-01: +0 % 1;
3+
test-02: -0 % 1;
4+
test-03: +0 % -1;
5+
test-04: -0 % -1;
6+
}

0 commit comments

Comments
 (0)