wallet-core/node_modules/sax/test/trailing-attribute-no-value.js
2016-11-03 01:33:53 +01:00

11 lines
237 B
JavaScript

require(__dirname).test({
xml :
"<root attrib>",
expect : [
["attribute", {name:"ATTRIB", value:"attrib"}],
["opentag", {name:"ROOT", attributes:{"ATTRIB":"attrib"}, isSelfClosing: false}]
],
opt : { trim : true }
});