update newly passing tests
This commit is contained in:
parent
a9be640124
commit
2c5b7c9198
@ -1,3 +1,9 @@
|
|||||||
|
# 0.10.3
|
||||||
|
|
||||||
|
- hyphen followed by interpolation is not treated as subtraction, e.g. `10-#{10}` => `10 -10` rather than `0`
|
||||||
|
- function arguments do not affect variables in outer scopes (fixes [#37](https://github.com/connorskees/grass/issues/37))
|
||||||
|
- improve error messages for NaN with units passed to builtin functions
|
||||||
|
|
||||||
# 0.10.2
|
# 0.10.2
|
||||||
|
|
||||||
- use `std::fs::OpenOptions` to open files ([#35](https://github.com/connorskees/grass/pull/35) by [@MidasLamb](https://github.com/MidasLamb))
|
- use `std::fs::OpenOptions` to open files ([#35](https://github.com/connorskees/grass/pull/35) by [@MidasLamb](https://github.com/MidasLamb))
|
||||||
|
@ -77,6 +77,13 @@ cargo b --release
|
|||||||
|
|
||||||
These numbers come from a default run of the Sass specification as shown above.
|
These numbers come from a default run of the Sass specification as shown above.
|
||||||
|
|
||||||
|
```
|
||||||
|
2020-08-15
|
||||||
|
PASSING: 3384
|
||||||
|
FAILING: 1703
|
||||||
|
TOTAL: 5093
|
||||||
|
```
|
||||||
|
|
||||||
```
|
```
|
||||||
2020-08-12
|
2020-08-12
|
||||||
PASSING: 3387
|
PASSING: 3387
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
/*! # grass
|
/*! # grass
|
||||||
An implementation of the Sass specification in pure rust.
|
An implementation of the Sass specification in pure rust.
|
||||||
|
|
||||||
Spec progress as of 2020-08-12:
|
Spec progress as of 2020-08-15:
|
||||||
|
|
||||||
| Passing | Failing | Total |
|
| Passing | Failing | Total |
|
||||||
|---------|---------|-------|
|
|---------|---------|-------|
|
||||||
| 3387 | 1706 | 5093 |
|
| 3384 | 1703 | 5093 |
|
||||||
|
|
||||||
## Use as library
|
## Use as library
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user