blob: ef89429a2daf601da7650268135fe9abcddb0eb1 [file] [log] [blame]
// Copyright (C) 2016 Jordan Harband. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.padend
description: >
String#padEnd should fail if given a null or undefined value,
or an object not coercible to a string.
author: Jordan Harband
---*/
assert.throws(TypeError, function () {
String.prototype.padEnd.call(null);
});
assert.throws(TypeError, function () {
String.prototype.padEnd.call(undefined);
});
var notCoercible = {
toString: function () {
throw new Test262Error('attempted toString');
}
};
assert.throws(Test262Error, function () {
String.prototype.padEnd.call(notCoercible);
});