summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/valueOf/non-generic.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/String/prototype/valueOf/non-generic.js')
-rw-r--r--js/src/tests/test262/built-ins/String/prototype/valueOf/non-generic.js57
1 files changed, 57 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/String/prototype/valueOf/non-generic.js b/js/src/tests/test262/built-ins/String/prototype/valueOf/non-generic.js
new file mode 100644
index 0000000000..761655d04d
--- /dev/null
+++ b/js/src/tests/test262/built-ins/String/prototype/valueOf/non-generic.js
@@ -0,0 +1,57 @@
+// Copyright (C) 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-string.prototype.valueof
+description: >
+ Throws a TypeError if called on neither String primitive nor String object
+info: |
+ String.prototype.valueOf ( )
+
+ 1. Return ? thisStringValue(this value).
+
+ thisStringValue ( value )
+
+ [...]
+ 3. Throw a TypeError exception.
+---*/
+
+var valueOf = String.prototype.valueOf;
+
+assert.throws(TypeError, function() {
+ valueOf.call(true);
+});
+
+assert.throws(TypeError, function() {
+ valueOf.call(-0);
+});
+
+assert.throws(TypeError, function() {
+ valueOf.call(null);
+});
+
+assert.throws(TypeError, function() {
+ valueOf.call();
+});
+
+assert.throws(TypeError, function() {
+ valueOf.call(Symbol('desc'));
+});
+
+assert.throws(TypeError, function() {
+ valueOf.call({
+ toString: function() {
+ return 'str';
+ },
+ });
+});
+
+assert.throws(TypeError, function() {
+ valueOf.call(['s', 't', 'r']);
+});
+
+assert.throws(TypeError, function() {
+ 'str' + {valueOf: valueOf};
+});
+
+reportCompare(0, 0);