wallet-core/node_modules/sax/test/trailing-attribute-no-value.js

11 lines
237 B
JavaScript
Raw Normal View History

2016-11-03 01:33:53 +01:00
require(__dirname).test({
xml :
"<root attrib>",
expect : [
["attribute", {name:"ATTRIB", value:"attrib"}],
["opentag", {name:"ROOT", attributes:{"ATTRIB":"attrib"}, isSelfClosing: false}]
],
opt : { trim : true }
});