Sha256: 3f9de96001863d7224285a608618230e1662bfc87df4de15d8d91f349c380896
Contents?: true
Size: 1.18 KB
Versions: 7
Compression:
Stored size: 1.18 KB
Contents
// ========================================================================== // Project: SproutCore Costello - Property Observing Library // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2010 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== /*globals module test ok equals same CoreTest */ sc_require('debug/test_suites/array/base'); SC.ArraySuite.define(function(T) { T.module("objectAt"); test("should return object at specified index", function() { var expected = T.expected(3), obj = T.newObject(3), len = 3, idx; for(idx=0;idx<len;idx++) { equals(obj.objectAt(idx), expected[idx], 'obj.objectAt(%@) should match'.fmt(idx)); } }); test("should return undefined when requesting objects beyond index", function() { var obj = T.newObject(3); equals(obj.objectAt(5), undefined, 'should return undefined for obj.objectAt(5) when len = 3'); equals(T.object.objectAt(0), undefined, 'should return undefined for obj.objectAt(0) when len = 0'); }); });
Version data entries
7 entries across 7 versions & 2 rubygems