From e23450fa8128b42c958761d39fb0256024339bba Mon Sep 17 00:00:00 2001 From: cjihrig Date: Fri, 15 May 2015 16:25:40 -0400 Subject: test: Array.prototype.values() regression test This commit adds a regression test for https://github.com/joyent/node/issues/25324 Reviewed-By: Julien Gilli PR-URL: https://github.com/joyent/node/pull/25328 --- test/simple/test-regress-GH-25324.js | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 test/simple/test-regress-GH-25324.js (limited to 'test') diff --git a/test/simple/test-regress-GH-25324.js b/test/simple/test-regress-GH-25324.js new file mode 100644 index 000000000..6720a8399 --- /dev/null +++ b/test/simple/test-regress-GH-25324.js @@ -0,0 +1,36 @@ +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. + +// Regression test for https://github.com/joyent/node/issues/25324. + +var common = require('../common'); +var assert = require('assert'); +var array = ['foo', 'bar', 'baz']; +var iterator = array.values(); + +var nbValues = array.length; +var nbIterated = 0; + +for (var letter of iterator) { + ++nbIterated; +} + +assert.equal(nbIterated, nbValues); -- cgit v1.2.1