summaryrefslogtreecommitdiff
path: root/includes/js/dojox/encoding/tests/digests
diff options
context:
space:
mode:
Diffstat (limited to 'includes/js/dojox/encoding/tests/digests')
-rw-r--r--includes/js/dojox/encoding/tests/digests/MD5.js26
-rw-r--r--includes/js/dojox/encoding/tests/digests/_base.js12
-rw-r--r--includes/js/dojox/encoding/tests/digests/runTests.html9
3 files changed, 0 insertions, 47 deletions
diff --git a/includes/js/dojox/encoding/tests/digests/MD5.js b/includes/js/dojox/encoding/tests/digests/MD5.js
deleted file mode 100644
index 8bfcfeb..0000000
--- a/includes/js/dojox/encoding/tests/digests/MD5.js
+++ /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));
- }
- ]);
-})();
-
-}
diff --git a/includes/js/dojox/encoding/tests/digests/_base.js b/includes/js/dojox/encoding/tests/digests/_base.js
deleted file mode 100644
index a2bc2fd..0000000
--- a/includes/js/dojox/encoding/tests/digests/_base.js
+++ /dev/null
@@ -1,12 +0,0 @@
-if(!dojo._hasResource["dojox.encoding.tests.digests._base"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
-dojo._hasResource["dojox.encoding.tests.digests._base"] = true;
-dojo.provide("dojox.encoding.tests.digests._base");
-dojo.require("dojox.encoding.digests._base");
-
-try{
- dojo.require("dojox.encoding.tests.digests.MD5");
-}catch(e){
- doh.debug(e);
-}
-
-}
diff --git a/includes/js/dojox/encoding/tests/digests/runTests.html b/includes/js/dojox/encoding/tests/digests/runTests.html
deleted file mode 100644
index 6c41e6e..0000000
--- a/includes/js/dojox/encoding/tests/digests/runTests.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
- <head>
- <title>Dojox.wire Unit Test Runner</title>
- <meta http-equiv="REFRESH" content="0;url=../../../../util/doh/runner.html?testModule=dojox.encoding.tests.digests._base"></HEAD>
- <BODY>
- Redirecting to D.O.H runner.
- </BODY>
-</HTML>