blob: 6069d9a360e5b749465cc0c4a588a1b804879a1c [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: The Number prototype object has the property toString
es5id: 15.7.4_A3.2
description: The test uses hasOwnProperty() method
---*/
assert.sameValue(
Number.prototype.hasOwnProperty("toString"),
true,
'Number.prototype.hasOwnProperty("toString") must return true'
);