1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
6 The production QuantifierPrefix :: + evaluates by returning the two
9 description: Execute /[a-z]+\d+/.exec("__abc123.0") and check results
12 var __executed = /[a-z]+\d+/.exec("__abc123.0");
14 var __expected = ["abc123"];
16 __expected.input = "__abc123.0";
21 'The value of __executed.length is expected to equal the value of __expected.length'
27 'The value of __executed.index is expected to equal the value of __expected.index'
33 'The value of __executed.input is expected to equal the value of __expected.input'
36 for(var index=0; index<__expected.length; index++) {
40 'The value of __executed[index] is expected to equal the value of __expected[index]'