rsass 0.29.2

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

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

#[test]
fn test() {
    assert_eq!(
        runner().ok("a {\
             \n  b: url;\
             \n  c: calc;\
             \n  d: element;\
             \n  e: expression;\
             \n  f: progid;\
             \n}\n"),
        "a {\
         \n  b: url;\
         \n  c: calc;\
         \n  d: element;\
         \n  e: expression;\
         \n  f: progid;\
         \n}\n"
    );
}