From 648e101c4916105d0a4684a43eacde63480b89ed Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Tue, 5 May 2020 19:01:40 -0400 Subject: [PATCH] add tests passing at the start of may --- README.md | 7 +++++++ src/lib.rs | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4d7a3e5..d2be381 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,13 @@ cargo b --release These numbers come from a default run of the sass specification as shown above. +``` +2020-05-01 +PASSING: 2193 +FAILING: 2900 +TOTAL: 5093 +``` + ``` 2020-04-21 PASSING: 2150 diff --git a/src/lib.rs b/src/lib.rs index f88b408..c26b77f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,11 +3,11 @@ An implementation of the sass specification in pure rust. All functionality is currently exposed through [`StyleSheet`]. -Spec progress as of 2020-04-21: +Spec progress as of 2020-05-01: | Passing | Failing | Total | |---------|---------|-------| -| 2150 | 2943 | 5093 | +| 2193 | 2900 | 5093 | ## Use as library ```