Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 2149 → Rev 2150

/trunk/api/js/dojo1.0/dojox/lang/tests/std.js
New file
0,0 → 1,31
if(!dojo._hasResource["dojox.lang.tests.std"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.lang.tests.std"] = true;
dojo.provide("dojox.lang.tests.std");
dojo.require("dojox.lang.functional");
 
(function(){
var df = dojox.lang.functional, v, isOdd = "%2";
tests.register("dojox.lang.tests.std", [
function testFilter1(t){ t.assertEqual(df.filter([1, 2, 3], isOdd), [1, 3]); },
function testFilter2(t){ t.assertEqual(df.filter([1, 2, 3], "%2==0"), [2]); },
function testForEach(t){ t.assertEqual(
(v = [], df.forEach([1, 2, 3], function(x){ v.push(x); }), v), [1, 2, 3]); },
function testMap(t){ t.assertEqual(df.map([1, 2, 3], "+3"), [4, 5, 6]); },
function testEvery1(t){ t.assertFalse(df.every([1, 2, 3], isOdd)); },
function testEvery2(t){ t.assertTrue(df.every([1, 3, 5], isOdd)); },
 
function testSome1(t){ t.assertFalse(df.some([2, 4, 6], isOdd)); },
function testSome2(t){ t.assertTrue(df.some([1, 2, 3], isOdd)); },
 
function testReduce1(t){ t.assertEqual(df.reduce([4, 2, 1], "x-y"), 1); },
function testReduce2(t){ t.assertEqual(df.reduce([4, 2, 1], "x-y", 8), 1); },
function testReduceRight1(t){ t.assertEqual(df.reduceRight([4, 2, 1], "x-y"), -5); },
function testReduceRight2(t){ t.assertEqual(df.reduceRight([4, 2, 1], "x-y", 8), 1); }
]);
})();
 
}