aboutsummaryrefslogtreecommitdiff
path: root/node_modules/sax/test/cyrillic.js
blob: f05dd1b23826c3dd91f2fc165bfbb85e008b348f (plain)
1
2
3
4
5
6
7
8
require(__dirname).test({
  xml: '<Р>тест</Р>',
  expect: [
    ['opentag', {'name':'Р', attributes:{}, isSelfClosing: false}],
    ['text', 'тест'],
    ['closetag', 'Р']
  ]
});