blob: d1d8b7c828cc764fe6c0cf2af351390f0cc91bee [file] [log] [blame]
require(__dirname).test({
xml :
"<root> "+
"<haha /> "+
"<haha/> "+
"<monkey> "+
"=(|) "+
"</monkey>"+
"</root> ",
expect : [
["opentag", {name:"ROOT", attributes:{}, isSelfClosing: false}],
["opentag", {name:"HAHA", attributes:{}, isSelfClosing: true}],
["closetag", "HAHA"],
["opentag", {name:"HAHA", attributes:{}, isSelfClosing: true}],
["closetag", "HAHA"],
// ["opentag", {name:"HAHA", attributes:{}}],
// ["closetag", "HAHA"],
["opentag", {name:"MONKEY", attributes:{}, isSelfClosing: false}],
["text", "=(|)"],
["closetag", "MONKEY"],
["closetag", "ROOT"]
],
opt : { trim : true }
});