]> git.pond.sub.org Git - eow/blobdiff - static/dojo-release-1.1.1/dojox/encoding/tests/digests/MD5.js
Replace Dojo with jQuery
[eow] / static / dojo-release-1.1.1 / dojox / encoding / tests / digests / MD5.js
diff --git a/static/dojo-release-1.1.1/dojox/encoding/tests/digests/MD5.js b/static/dojo-release-1.1.1/dojox/encoding/tests/digests/MD5.js
deleted file mode 100644 (file)
index 8bfcfeb..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-if(!dojo._hasResource["dojox.encoding.tests.digests.MD5"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
-dojo._hasResource["dojox.encoding.tests.digests.MD5"] = true;
-dojo.provide("dojox.encoding.tests.digests.MD5");
-dojo.require("dojox.encoding.digests.MD5");
-
-(function(){
-       var message="The rain in Spain falls mainly on the plain.";
-       var base64="OUhxbVZ1Mtmu4zx9LzS5cA==";
-       var hex="3948716d567532d9aee33c7d2f34b970";
-       var s="9HqmVu2\xD9\xAE\xE3<}/4\xB9p";
-       var ded=dojox.encoding.digests;
-
-       tests.register("dojox.encoding.tests.digests.MD5", [
-               function testBase64Compute(t){
-                       t.assertEqual(base64, ded.MD5(message));
-               },
-               function testHexCompute(t){
-                       t.assertEqual(hex, ded.MD5(message, ded.outputTypes.Hex)); 
-               },
-               function testStringCompute(t){
-                       t.assertEqual(s, ded.MD5(message, ded.outputTypes.String)); 
-               }
-       ]);
-})();
-
-}