2020-04-21 tests

This commit is contained in:
ConnorSkees 2020-04-21 04:59:03 -04:00
parent 1cb135c833
commit 93bd950940
2 changed files with 11 additions and 4 deletions

View File

@ -5,7 +5,7 @@ An implementation of the SASS spec in pure Rust
This crate aims to provide a high level interface for compiling SASS into This crate aims to provide a high level interface for compiling SASS into
plain CSS. It offers a very limited API, currently exposing only 2 structs. plain CSS. It offers a very limited API, currently exposing only 2 structs.
This crate also comes with a binary that is intended to act as an invisible In addition to a library, also included is a binary that is intended to act as an invisible
replacement to the sass commandline executable. replacement to the sass commandline executable.
This crate aims to achieve complete feature parity with the dart-sass reference This crate aims to achieve complete feature parity with the dart-sass reference
@ -22,7 +22,7 @@ a bug except for in the following situations:
The large features remaining are The large features remaining are
``` ```
all builtin selector functions (274 tests) all builtin selector functions (274 tests)
content-exists, min, min, url builtin functions content-exists, min, max
@extend (~600 tests) @extend (~600 tests)
indented syntax (27 tests) indented syntax (27 tests)
a special parser for plain css a special parser for plain css
@ -43,6 +43,13 @@ cargo b --release
./sass-spec/sass-spec.rb -c './target/release/grass' ./sass-spec/sass-spec.rb -c './target/release/grass'
``` ```
```
2020-04-21
PASSING: 2150
FAILING: 2943
TOTAL: 5093
```
``` ```
2020-04-07 2020-04-07
PASSING: 2031 PASSING: 2031

View File

@ -3,11 +3,11 @@ An implementation of the sass specification in pure rust.
All functionality is currently exposed through [`StyleSheet`]. All functionality is currently exposed through [`StyleSheet`].
Spec progress as of 2020-04-12: Spec progress as of 2020-04-21:
| Passing | Failing | Total | | Passing | Failing | Total |
|---------|---------|-------| |---------|---------|-------|
| 2023 | 3070 | 5093 | | 2150 | 2943 | 5093 |
## Use as library ## Use as library
``` ```