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

/*---
info: The length property of the test method is 1
es5id: 15.10.6.3_A11
description: Checking RegExp.prototype.test.length
---*/
assert.sameValue(
  RegExp.prototype.test.hasOwnProperty("length"),
  true,
  'RegExp.prototype.test.hasOwnProperty("length") must return true'
);

assert.sameValue(RegExp.prototype.test.length, 1, 'The value of RegExp.prototype.test.length is expected to be 1');

reportCompare(0, 0);