Sha256: 26984fae36cb1b63c7843f84de49b39c37da278262a0f3f54679f748a1996189
Contents?: true
Size: 1.06 KB
Versions: 17
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
17 entries across 17 versions & 2 rubygems