summaryrefslogtreecommitdiffstatshomepage
path: root/includes/js/dojox/collections/tests/Set.js
diff options
context:
space:
mode:
authorGravatar mensonge2008-11-14 15:39:19 +0000
committerGravatar mensonge2008-11-14 15:39:19 +0000
commit1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch)
tree3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dojox/collections/tests/Set.js
parent104d59099e048688c4dbac37d72137006e396558 (diff)
downloadscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz
scuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.zip
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/collections/tests/Set.js')
-rw-r--r--includes/js/dojox/collections/tests/Set.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/includes/js/dojox/collections/tests/Set.js b/includes/js/dojox/collections/tests/Set.js
deleted file mode 100644
index d548223..0000000
--- a/includes/js/dojox/collections/tests/Set.js
+++ /dev/null
@@ -1,35 +0,0 @@
-if(!dojo._hasResource["dojox.collections.tests.Set"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
-dojo._hasResource["dojox.collections.tests.Set"] = true;
-dojo.provide("dojox.collections.tests.Set");
-dojo.require("dojox.collections.Set");
-
-(function(){
- var dxcs=dojox.collections.Set;
- var a = ["apple","bear","candy","donut","epiphite","frank"];
- var b = ["bear","epiphite","google","happy","joy"];
- tests.register("dojox.collections.tests.Set", [
- function testUnion(t){
- var union=dxcs.union(a,b);
- t.assertEqual("apple,bear,candy,donut,epiphite,frank,google,happy,joy", union.toArray().join(','));
- },
- function testIntersection(t){
- var itsn=dxcs.intersection(a,b);
- t.assertEqual("bear,epiphite", itsn.toArray().join(","));
- t.assertEqual("bear", dxcs.intersection(["bear","apple"], ["bear"]));
- },
- function testDifference(t){
- var d=dxcs.difference(a,b);
- t.assertEqual("apple,candy,donut,frank",d.toArray().join(','));
- },
- function testIsSubSet(t){
- t.assertFalse(dxcs.isSubSet(a,["bear","candy"]));
- t.assertTrue(dxcs.isSubSet(["bear","candy"],a));
- },
- function testIsSuperSet(t){
- t.assertTrue(dxcs.isSuperSet(a,["bear","candy"]));
- t.assertFalse(dxcs.isSuperSet(["bear","candy"],a));
- }
- ]);
-})();
-
-}