blob: 31a8a304fcf67c12676d0490e4ffc1be34bc7592 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require(__dirname).test({
xml : "<r><![CDATA[ this is character data ]]></r>",
expect : [
["opentag", {"name": "R","attributes": {}, "isSelfClosing": false}],
["opencdata", undefined],
["cdata", " this is character data "],
["closecdata", undefined],
["closetag", "R"]
]
});
|