rsass 0.29.2

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

fn runner() -> crate::TestRunner {
    super::runner()
        .with_cwd("map")
        .mock_file("plain.css", "a {\n  x: (y: z);\n}\n")
}

#[test]
#[ignore] // wrong error
fn test() {
    assert_eq!(
        runner().err("@use \'plain\'"),
        "Error: expected \")\".\
         \n  ,\
         \n2 |   x: (y: z);\
         \n  |        ^\
         \n  \'\
         \n  plain.css 2:8   @use\
         \n  input.scss 1:1  root stylesheet",
    );
}