blob: 222837f8f9de9ae9491fb81647f2a93579453d64 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require(__dirname).test({
xml :
"<root attrib>",
expect : [
["attribute", {name:"ATTRIB", value:"attrib"}],
["opentag", {name:"ROOT", attributes:{"ATTRIB":"attrib"}, isSelfClosing: false}]
],
opt : { trim : true }
});
|