diff options
Diffstat (limited to 'js/src/tests/test262/built-ins/Map/Symbol.species/symbol-species.js')
-rw-r--r-- | js/src/tests/test262/built-ins/Map/Symbol.species/symbol-species.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Map/Symbol.species/symbol-species.js b/js/src/tests/test262/built-ins/Map/Symbol.species/symbol-species.js new file mode 100644 index 0000000000..b3c7fa8742 --- /dev/null +++ b/js/src/tests/test262/built-ins/Map/Symbol.species/symbol-species.js @@ -0,0 +1,23 @@ +// Copyright 2015 Cubane Canada, Inc. All rights reserved. +// See LICENSE for details. + +/*--- +info: | + Map has a property at `Symbol.species` +esid: sec-get-map-@@species +author: Sam Mikes +description: Map[Symbol.species] exists per spec +includes: [propertyHelper.js] +features: [Symbol.species] +---*/ + +var desc = Object.getOwnPropertyDescriptor(Map, Symbol.species); + +assert.sameValue(desc.set, undefined); +assert.sameValue(typeof desc.get, 'function'); + +verifyNotWritable(Map, Symbol.species, Symbol.species); +verifyNotEnumerable(Map, Symbol.species); +verifyConfigurable(Map, Symbol.species); + +reportCompare(0, 0); |