summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/prototype/propertyIsEnumerable/S15.2.4.7_A11.js
blob: 7f091b33b4635d7751f03fc4aec51e6ea959e5c7 (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: The length property of the hasOwnProperty method is 1
es5id: 15.2.4.7_A11
description: Checking the value of Object.prototype.hasOwnProperty.length
---*/
assert(
  !!Object.prototype.propertyIsEnumerable.hasOwnProperty("length"),
  'The value of !!Object.prototype.propertyIsEnumerable.hasOwnProperty("length") is expected to be true'
);

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

reportCompare(0, 0);