Sha256: 0a85d1f51fd5164926915823fc2ea4e87aa39cb22d419dadf3c6a3a4bb4c6759
Contents?: true
Size: 865 Bytes
Versions: 41
Compression:
Stored size: 865 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== // ======================================================================== // SC.keys Tests // ======================================================================== /*globals module test */ module("Fetch Keys "); test("should get a key array for a specified object ",function(){ var object1 = {}; object1.names = "Rahul"; object1.age = "23"; object1.place = "Mangalore"; var object2 = []; object2 = SC.keys(object1); same(object2,['names','age','place']); });
Version data entries
41 entries across 41 versions & 1 rubygems