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/dojo/tests/AdapterRegistry.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/dojo/tests/AdapterRegistry.js')
-rw-r--r-- | includes/js/dojo/tests/AdapterRegistry.js | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/includes/js/dojo/tests/AdapterRegistry.js b/includes/js/dojo/tests/AdapterRegistry.js deleted file mode 100644 index 4565e27..0000000 --- a/includes/js/dojo/tests/AdapterRegistry.js +++ /dev/null @@ -1,75 +0,0 @@ -if(!dojo._hasResource["tests.AdapterRegistry"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["tests.AdapterRegistry"] = true; -dojo.provide("tests.AdapterRegistry"); -dojo.require("dojo.AdapterRegistry"); - -doh.register("tests.AdapterRegistry", - [ - function ctor(t){ - var taa = new dojo.AdapterRegistry(); - t.is(0, taa.pairs.length); - t.f(taa.returnWrappers); - - var taa = new dojo.AdapterRegistry(true); - t.t(taa.returnWrappers); - }, - - function register(t){ - var taa = new dojo.AdapterRegistry(); - taa.register("blah", - function(str){ return str == "blah"; }, - function(){ return "blah"; } - ); - t.is(1, taa.pairs.length); - t.is("blah", taa.pairs[0][0]); - - taa.register("thinger"); - taa.register("prepend", null, null, true, true); - t.is("prepend", taa.pairs[0][0]); - t.t(taa.pairs[0][3]); - }, - - /* - function match(t){ - }, - */ - - function noMatch(t){ - var taa = new dojo.AdapterRegistry(); - var threw = false; - try{ - taa.match("blah"); - }catch(e){ - threw = true; - } - t.t(threw); - }, - - function returnWrappers(t){ - var taa = new dojo.AdapterRegistry(); - taa.register("blah", - function(str){ return str == "blah"; }, - function(){ return "blah"; } - ); - t.is("blah", taa.match("blah")); - - taa.returnWrappers = true; - t.is("blah", taa.match("blah")()); - }, - - function unregister(t){ - var taa = new dojo.AdapterRegistry(); - taa.register("blah", - function(str){ return str == "blah"; }, - function(){ return "blah"; } - ); - taa.register("thinger"); - taa.register("prepend", null, null, true, true); - taa.unregister("prepend"); - t.is(2, taa.pairs.length); - t.is("blah", taa.pairs[0][0]); - } - ] -); - -} |