test262/test/built-ins/Map/symbol-species.js
Rick Waldron 59e2a7ac57 Import tests from Google V8 (Symbol)
These tests are derived from the following files within the Google V8 project:

	test/mjsunit/harmony/private.js
2015-04-07 16:53:18 -04:00

19 lines
479 B
JavaScript

// Copyright 2015 Cubane Canada, Inc. All rights reserved.
// See LICENSE for details.
/*---
info: >
Map has a property at `Symbol.species`
es6id: 23.1.2.2
author: Sam Mikes
description: Map[Symbol.species] exists per spec
includes:
- propertyHelper.js
---*/
assert.sameValue(Map[Symbol.species], Map, "Map[Symbol.species] is Map");
verifyNotWritable(Map, Symbol.species, Symbol.species);
verifyNotEnumerable(Map, Symbol.species);
verifyConfigurable(Map, Symbol.species);