rsass 0.29.2

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

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

#[test]
fn test() {
    assert_eq!(
        runner().ok("@use \"plain\";\n"),
        ".hacks {\
         \n  *x: y;\
         \n  :x: y;\
         \n  #x: y;\
         \n  .x: y;\
         \n}\n"
    );
}