update newly passing tests

This commit is contained in:
Connor Skees 2020-08-15 22:25:11 -04:00
parent a9be640124
commit 2c5b7c9198
3 changed files with 15 additions and 2 deletions

View File

@ -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
- use `std::fs::OpenOptions` to open files ([#35](https://github.com/connorskees/grass/pull/35) by [@MidasLamb](https://github.com/MidasLamb))

View File

@ -77,6 +77,13 @@ cargo b --release
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
PASSING: 3387

View File

@ -1,11 +1,11 @@
/*! # grass
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 |
|---------|---------|-------|
| 3387 | 1706 | 5093 |
| 3384 | 1703 | 5093 |
## Use as library
```