diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
commit | 1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch) | |
tree | 3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dojox/lang/tests/fold.js | |
parent | 104d59099e048688c4dbac37d72137006e396558 (diff) | |
download | semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.bz2 |
Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojox/lang/tests/fold.js')
-rw-r--r-- | includes/js/dojox/lang/tests/fold.js | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/includes/js/dojox/lang/tests/fold.js b/includes/js/dojox/lang/tests/fold.js deleted file mode 100644 index e766c62..0000000 --- a/includes/js/dojox/lang/tests/fold.js +++ /dev/null @@ -1,64 +0,0 @@ -if(!dojo._hasResource["dojox.lang.tests.fold"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.lang.tests.fold"] = true; -dojo.provide("dojox.lang.tests.fold"); - -dojo.require("dojox.lang.functional.fold"); -dojo.require("dojox.lang.functional.scan"); -dojo.require("dojox.lang.functional.curry"); - -(function(){ - var df = dojox.lang.functional, a = df.arg; - - var revArrayIter = function(array){ - this.array = array; - this.position = array.length - 1; - }; - dojo.extend(revArrayIter, { - hasNext: df.lambda("this.position >= 0"), - next: df.lambda("this.array[this.position--]") - }); - - tests.register("dojox.lang.tests.fold", [ - function testFoldl1(t){ t.assertEqual(df.foldl([1, 2, 3], "+", 0), 6); }, - function testFoldl2(t){ t.assertEqual(df.foldl1([1, 2, 3], "*"), 6); }, - function testFoldl3(t){ t.assertEqual(df.foldl1([1, 2, 3], "/"), 1/6); }, - function testFoldl4(t){ t.assertEqual(df.foldl1([1, 2, 3], df.partial(Math.max, a, a)), 3); }, - function testFoldl5(t){ t.assertEqual(df.foldl1([1, 2, 3], df.partial(Math.min, a, a)), 1); }, - - function testFoldlIter(t){ - var iter = new revArrayIter([1, 2, 3]); - t.assertEqual(df.foldl(iter, "+", 0), 6); - }, - function testFoldl1Iter(t){ - var iter = new revArrayIter([1, 2, 3]); - t.assertEqual(df.foldl1(iter, "/"), 3/2); - }, - - function testFoldr1(t){ t.assertEqual(df.foldr([1, 2, 3], "+", 0), 6); }, - function testFoldr2(t){ t.assertEqual(df.foldr1([1, 2, 3], "*"), 6); }, - function testFoldr3(t){ t.assertEqual(df.foldr1([1, 2, 3], "/"), 3/2); }, - function testFoldr4(t){ t.assertEqual(df.foldr1([1, 2, 3], df.partial(Math.max, a, a)), 3); }, - function testFoldr5(t){ t.assertEqual(df.foldr1([1, 2, 3], df.partial(Math.min, a, a)), 1); }, - - function testScanl1(t){ t.assertEqual(df.scanl([1, 2, 3], "+", 0), [0, 1, 3, 6]); }, - function testScanl2(t){ t.assertEqual(df.scanl1([1, 2, 3], "*"), [1, 2, 6]); }, - function testScanl3(t){ t.assertEqual(df.scanl1([1, 2, 3], df.partial(Math.max, a, a)), [1, 2, 3]); }, - function testScanl4(t){ t.assertEqual(df.scanl1([1, 2, 3], df.partial(Math.min, a, a)), [1, 1, 1]); }, - - function testScanlIter(t){ - var iter = new revArrayIter([1, 2, 3]); - t.assertEqual(df.scanl(iter, "+", 0), [0, 3, 5, 6]); - }, - function testScanl1Iter(t){ - var iter = new revArrayIter([1, 2, 3]); - t.assertEqual(df.scanl1(iter, "*"), [3, 6, 6]); - }, - - function testScanr1(t){ t.assertEqual(df.scanr([1, 2, 3], "+", 0), [6, 5, 3, 0]); }, - function testScanr2(t){ t.assertEqual(df.scanr1([1, 2, 3], "*"), [6, 6, 3]); }, - function testScanr3(t){ t.assertEqual(df.scanr1([1, 2, 3], df.partial(Math.max, a, a)), [3, 3, 3]); }, - function testScanr4(t){ t.assertEqual(df.scanr1([1, 2, 3], df.partial(Math.min, a, a)), [1, 2, 3]); } - ]); -})(); - -} |