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

Add boolean/Symbol() tests for trim(Start/End)

parent 3f420039
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: pending
description: Behavoir when "this" value is a boolean.
---*/
var trimStart = String.prototype.trimStart
assert.sameValue(
trimStart.call(true),
'true',
'String.prototype.trimStart.call(true)'
);
assert.sameValue(
String.prototype.trimStart.call(false),
'false',
'String.prototype.trimStart.call(false)'
);
// Copyright (C) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
description: Type error when "this" value is a Symbol
info: |
TrimString
2. Let S be ? ToString(str).
ToString
Argument Type: Symbol
Result: Throw a TypeError exception
---*/
var trimEnd = String.prototype.trimEnd;
var symbol = Symbol()
assert.throws(TypeError, function() {
trimEnd.call(symbol);
}, 'Symbol()');
// Copyright (c) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
description: Behavoir when "this" value is a boolean.
---*/
var trimStart = String.prototype.trimStart
assert.sameValue(
trimStart.call(true),
'true',
'String.prototype.trimStart.call(true)'
);
assert.sameValue(
String.prototype.trimStart.call(false),
'false',
'String.prototype.trimStart.call(false)'
);
// Copyright (C) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
description: Type error when "this" value is a Symbol
info: |
TrimString
2. Let S be ? ToString(str).
ToString
Argument Type: Symbol
Result: Throw a TypeError exception
---*/
var trimStart = String.prototype.trimStart;
var symbol = Symbol()
assert.throws(TypeError, function() {
trimStart.call(symbol);
}, 'Symbol()');
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