Skip to content
Snippets Groups Projects
Commit 583a67af authored by Valerie R Young's avatar Valerie R Young Committed by Rick Waldron
Browse files

Add number tests for trim(Start/End)

parent 812e071f
No related branches found
No related tags found
No related merge requests found
// Copyright (c) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.trimEnd
description: Behavoir when "this" value is a number.
info: |
TrimString
2. Let S be ? ToString(str).
ToString
Argument Type: Number
Result: NumberToString(argument)
features: [string-trimming]
---*/
var trimEnd = String.prototype.trimEnd
assert.sameValue(
trimEnd.call(NaN),
'NaN',
'String.prototype.trimEnd.call(NaN)'
);
assert.sameValue(
trimEnd.call(Infinity),
'Infinity',
'String.prototype.trimEnd.call(Infinity)'
);
assert.sameValue(
trimEnd.call(-0),
'0',
'String.prototype.trimEnd.call(-0)'
);
assert.sameValue(
trimEnd.call(1),
'1',
'String.prototype.trimEnd.call(1)'
);
assert.sameValue(
trimEnd.call(-1),
'-1',
'String.prototype.trimEnd.call(-1)'
);
// Copyright (c) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.trimStart
description: Behavoir when "this" value is a number.
info: |
TrimString
2. Let S be ? ToString(str).
ToString
Argument Type: Number
Result: NumberToString(argument)
features: [string-trimming]
---*/
var trimStart = String.prototype.trimStart
assert.sameValue(
trimStart.call(NaN),
'NaN',
'String.prototype.trimStart.call(NaN)'
);
assert.sameValue(
trimStart.call(Infinity),
'Infinity',
'String.prototype.trimStart.call(Infinity)'
);
assert.sameValue(
trimStart.call(-0),
'0',
'String.prototype.trimStart.call(-0)'
);
assert.sameValue(
trimStart.call(1),
'1',
'String.prototype.trimStart.call(1)'
);
assert.sameValue(
trimStart.call(-1),
'-1',
'String.prototype.trimStart.call(-1)'
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment