summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/assign/OnlyOneArgument.js
blob: 3fe6d288f2c6066a416c515b29fcf18df585f991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2015 Microsoft Corporation. All rights reserved.
// This code is governed by the license found in the LICENSE file.

/*---
description: >
  test Object.Assign(target,...sources),only one argument was passed,
  return ToObject(target)
es6id:  19.1.2.1.3
---*/

var target = "a";
var result = Object.assign(target);

assert.sameValue(typeof result, "object");
assert.sameValue(result.valueOf(), "a", "The value should be 'a'.");

reportCompare(0, 0);