Sha256: 038242b2c29eb268e78cb0051801fb014672e3bf09a3f9e9010511aacf6d17dd
Contents?: true
Size: 1.06 KB
Versions: 9
Compression:
Stored size: 1.06 KB
Contents
// ========================================================================== // Project: SproutCore Costello - Property Observing Library // Copyright: ©2006-2009 Sprout Systems, Inc. and contributors. // Portions ©2008-2009 Apple, Inc. All rights reserved. // License: Licened 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("indexOf"); test("should return index of object", function() { var expected = T.expected(3), obj = T.newObject(3), len = 3, idx; for(idx=0;idx<len;idx++) { equals(obj.indexOf(expected[idx]), idx, 'obj.indexOf(%@) should match idx'.fmt(expected[idx])); } }); test("should return -1 when requesting object not in index", function() { var obj = T.newObject(3), foo = {}; equals(obj.indexOf(foo), -1, 'obj.indexOf(foo) should be < 0'); }); });
Version data entries
9 entries across 9 versions & 1 rubygems