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

9 lines
192 B
JavaScript
Raw Normal View History

2016-11-03 01:33:53 +01:00
require(__dirname).test({
xml: '<Р>тест</Р>',
expect: [
['opentag', {'name':'Р', attributes:{}, isSelfClosing: false}],
['text', 'тест'],
['closetag', 'Р']
]
});