rsass 0.29.2

Sass implementation in pure rust (not complete yet)
Documentation
//! Tests auto-converted from "sass-spec/spec/values/maps/duplicate-keys.hrx"

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

#[test]
#[ignore] // wrong error
fn test() {
    assert_eq!(
        runner().err(
            "$map: (\
             \n  alpha: 1,\
             \n  beta: 2,\
             \n  gamma: 3,\
             \n  delta: (\
             \n    eta: 5,\
             \n    eta: 6,\
             \n  ),\
             \n);\n"
        ),
        "Error: Duplicate key.\
         \n  ,\
         \n6 |     eta: 5,\
         \n  |     === first key\
         \n7 |     eta: 6,\
         \n  |     ^^^ second key\
         \n  \'\
         \n  input.scss 7:5  root stylesheet",
    );
}