Add new index.js files
This commit is contained in:
parent
3beb4ac0ad
commit
3ef6814421
7
test/crypto/cipher/index.js
Normal file
7
test/crypto/cipher/index.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
describe('Cipher', function () {
|
||||
require('./aes.js');
|
||||
require('./blowfish.js');
|
||||
require('./cast5.js');
|
||||
require('./des.js');
|
||||
require('./twofish.js');
|
||||
});
|
5
test/crypto/hash/index.js
Normal file
5
test/crypto/hash/index.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
describe('Hash', function () {
|
||||
require('./md5.js');
|
||||
require('./ripemd.js');
|
||||
require('./sha.js');
|
||||
});
|
5
test/crypto/index.js
Normal file
5
test/crypto/index.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
describe('Crypto', function () {
|
||||
require('./crypto.js');
|
||||
require('./cipher');
|
||||
require('./hash');
|
||||
});
|
Loading…
Reference in New Issue
Block a user