summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2015-05-15 16:25:40 -0400
committerJulien Gilli <julien.gilli@joyent.com>2015-05-22 11:52:07 -0700
commite23450fa8128b42c958761d39fb0256024339bba (patch)
treeed3f4fdb6242364441cb068289bf0c402ec8e42a
parent6157697bd5bdbf58b19b9d3177249a7bbb467f79 (diff)
downloadnode-e23450fa8128b42c958761d39fb0256024339bba.tar.gz
test: Array.prototype.values() regression test
This commit adds a regression test for https://github.com/joyent/node/issues/25324 Reviewed-By: Julien Gilli <julien.gilli@joyent.com> PR-URL: https://github.com/joyent/node/pull/25328
-rw-r--r--test/simple/test-regress-GH-25324.js36
1 files changed, 36 insertions, 0 deletions
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);