// unquoted attributes should be ok in non-strict mode // https://github.com/isaacs/sax-js/issues/31 require(__dirname).test ( { xml : "" , expect : [ [ "attribute", { name: "class", value: "test" } ] , [ "attribute", { name: "hello", value: "world" } ] , [ "opentag", { name: "SPAN", attributes: { class: "test", hello: "world" } } ] , [ "closetag", "SPAN" ] ] , strict : false , opt : {} } )