summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/test/S15.10.6.3_A1_T21.js
blob: 1af7dfac0c38f33032ab970597703c71436b1df3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Equivalent to the expression RegExp.prototype.exec(string) != null
es5id: 15.10.6.3_A1_T21
description: >
    RegExp is /[a-z]n/ and tested string is x, where x is
    function(){}()
---*/

var __re = /[a-z]n/;

assert.sameValue(
  __re.test(function(){}()),
  __re.exec(function(){}()) !== null,
  '__re.test(function(){}()) must return __re.exec(function(){}()) !== null'
);

reportCompare(0, 0);