forked from lodash/lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathescape.test.js
30 lines (24 loc) · 842 Bytes
/
escape.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import assert from 'assert';
import lodashStable from 'lodash';
import escape from '../escape.js';
import unescape from '../unescape.js';
describe('escape', function() {
var escaped = '&<>"'/',
unescaped = '&<>"\'/';
escaped += escaped;
unescaped += unescaped;
it('should escape values', function() {
assert.strictEqual(escape(unescaped), escaped);
});
it('should handle strings with nothing to escape', function() {
assert.strictEqual(escape('abc'), 'abc');
});
it('should escape the same characters unescaped by `_.unescape`', function() {
assert.strictEqual(escape(unescape(escaped)), escaped);
});
lodashStable.each(['`', '/'], function(chr) {
it('should not escape the "' + chr + '" character', function() {
assert.strictEqual(escape(chr), chr);
});
});
});