rsass 0.29.2

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

fn runner() -> crate::TestRunner {
    super::runner()
        .with_cwd("extend")
        .mock_file("_plain.css", "b {c: d}\n")
}

#[test]
#[ignore] // unexepected error
fn test() {
    assert_eq!(
        runner().ok("@use \"plain\";\n\
             \na {@extend b}\n"),
        "b, a {\
         \n  c: d;\
         \n}\n"
    );
}