From 3ef6814421ccfa725d98ede3279417df573431e2 Mon Sep 17 00:00:00 2001 From: Robert Nelson Date: Fri, 3 Jan 2014 08:11:55 -0800 Subject: [PATCH] Add new index.js files --- test/crypto/cipher/index.js | 7 +++++++ test/crypto/hash/index.js | 5 +++++ test/crypto/index.js | 5 +++++ 3 files changed, 17 insertions(+) create mode 100644 test/crypto/cipher/index.js create mode 100644 test/crypto/hash/index.js create mode 100644 test/crypto/index.js diff --git a/test/crypto/cipher/index.js b/test/crypto/cipher/index.js new file mode 100644 index 00000000..6737cca1 --- /dev/null +++ b/test/crypto/cipher/index.js @@ -0,0 +1,7 @@ +describe('Cipher', function () { + require('./aes.js'); + require('./blowfish.js'); + require('./cast5.js'); + require('./des.js'); + require('./twofish.js'); +}); diff --git a/test/crypto/hash/index.js b/test/crypto/hash/index.js new file mode 100644 index 00000000..7c5527ee --- /dev/null +++ b/test/crypto/hash/index.js @@ -0,0 +1,5 @@ +describe('Hash', function () { + require('./md5.js'); + require('./ripemd.js'); + require('./sha.js'); +}); diff --git a/test/crypto/index.js b/test/crypto/index.js new file mode 100644 index 00000000..5b407fc2 --- /dev/null +++ b/test/crypto/index.js @@ -0,0 +1,5 @@ +describe('Crypto', function () { + require('./crypto.js'); + require('./cipher'); + require('./hash'); +});