rsass 0.29.2

Sass implementation in pure rust (not complete yet)
Documentation
//! Tests auto-converted from "sass-spec/spec/css/unicode_range/simple.hrx"

fn runner() -> crate::TestRunner {
    super::runner().with_cwd("simple")
}

#[test]
fn test() {
    assert_eq!(
        runner().ok(".simple {\
             \n  one-digit: U+1;\
             \n  four-digit: U+1234;\
             \n  six-digit: U+123456;\
             \n  hex-digit: U+1A2B;\
             \n  lowercase: u+1a2b;\
             \n}\n"),
        ".simple {\
         \n  one-digit: U+1;\
         \n  four-digit: U+1234;\
         \n  six-digit: U+123456;\
         \n  hex-digit: U+1A2B;\
         \n  lowercase: u+1a2b;\
         \n}\n"
    );
}