1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
QUnit.test('String#link', assert => {
const { link } = String.prototype;
assert.isFunction(link);
assert.arity(link, 1);
assert.name(link, 'link');
assert.looksNative(link);
assert.nonEnumerable(String.prototype, 'link');
assert.same('a'.link('b'), '<a href="b">a</a>', 'lower case');
assert.same('a'.link('"'), '<a href=""">a</a>', 'escape quotes');
if (typeof Symbol == 'function' && !Symbol.sham) {
const symbol = Symbol('link test');
assert.throws(() => link.call(symbol, 'b'), 'throws on symbol context');
assert.throws(() => link.call('a', symbol), 'throws on symbol argument');
}
});
|