xml-flow
Version:
An XML/HTML stream reader, now with less suck.
30 lines (21 loc) • 685 B
JavaScript
/*eslint func-names: 0*/
/*global describe, it */
const helper = require('../lib/helper');
require('chai').should();
describe('helper.escape()', () => {
it('should not escape normal stuff', () => {
helper.escape('x y').should.equal('x y');
});
it('should escape the ampersand', () => {
helper.escape('x & y').should.equal('x & y');
});
it('should escape the greater-than', () => {
helper.escape('x > y').should.equal('x > y');
});
it('should escape the less-than', () => {
helper.escape('x < y').should.equal('x < y');
});
it('should escape the double-quote', () => {
helper.escape('x " y').should.equal('x " y');
});
});