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