Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Object / S15.2.1.1_A2_T8.js
blobdc2c0df58385563cd538a47e6a96d71430359ba2
1 // Copyright 2009 the Sputnik authors.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 info: |
6     When the Object function is called with one argument value,
7     and the value neither is null nor undefined, and is supplied, return ToObject(value)
8 es5id: 15.2.1.1_A2_T8
9 description: Calling Object function with function variable argument value
10 ---*/
12 var func = function() {
13   return 1;
16 assert.sameValue(typeof func, 'function', 'The value of `typeof func` is expected to be "function"');
18 var n_obj = Object(func);
20 assert.sameValue(n_obj, func, 'The value of n_obj is expected to equal the value of func');
21 assert.sameValue(n_obj(), 1, 'n_obj() must return 1');
23 reportCompare(0, 0);