wallet-core/node_modules/sax/test/entities.js

11 lines
321 B
JavaScript
Raw Normal View History

2016-11-03 01:33:53 +01:00
require(__dirname).test({
xml: '<r>&rfloor; ' +
'&spades; &copy; &rarr; &amp; ' +
'&lt; < < < < &gt; &real; &weierp; &euro;</r>',
expect: [
['opentag', {'name':'R', attributes:{}, isSelfClosing: false}],
['text', '⌋ ♠ © → & < < < < < > ℘ €'],
['closetag', 'R']
]
});