summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/assign/Source-String.js
blob: d102c60f45d07f67b24fa70388da8b2443980a5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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), string have own enumerable properties, so it can be wrapped to objects.
esid: sec-object.assign
---*/

var target = new Object();
var result = Object.assign(target, "123");

assert.sameValue(result[0], "1", 'The value of result[0] is expected to be "1"');
assert.sameValue(result[1], "2", 'The value of result[1] is expected to be "2"');
assert.sameValue(result[2], "3", 'The value of result[2] is expected to be "3"');

reportCompare(0, 0);