test262/test/built-ins/Object/assign/Source-String.js

15 lines
608 B
JavaScript
Raw Normal View History

2015-06-18 09:23:15 +02:00
// 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.
2018-01-10 23:33:03 +01:00
esid: sec-object.assign
2015-06-18 09:23:15 +02:00
---*/
var target = new Object();
var result = Object.assign(target, "123");
2015-06-18 09:23:15 +02:00
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"');