Sha256: d275a1d48148ea4695bbb898316abde93609b4cd62233725d122cb31fc2a5e55
Contents?: true
Size: 872 Bytes
Versions: 45
Compression:
Stored size: 872 Bytes
Contents
var xmlns_attr = { name: "xmlns", value: "http://foo", prefix: "xmlns", local: "", uri : "http://www.w3.org/2000/xmlns/" }; var attr_attr = { name: "attr", value: "bar", prefix: "", local : "attr", uri : "" }; require(__dirname).test ( { xml : "<elm xmlns='http://foo' attr='bar'/>" , expect : [ [ "opennamespace", { prefix: "", uri: "http://foo" } ] , [ "attribute", xmlns_attr ] , [ "attribute", attr_attr ] , [ "opentag", { name: "elm", prefix: "", local: "elm", uri : "http://foo", ns : { "" : "http://foo" }, attributes: { xmlns: xmlns_attr, attr: attr_attr }, isSelfClosing: true } ] , [ "closetag", "elm" ] , [ "closenamespace", { prefix: "", uri: "http://foo"} ] ] , strict : true , opt : {xmlns: true} } )
Version data entries
45 entries across 45 versions & 3 rubygems