upd: test files

This commit is contained in:
lancegin 2017-06-29 14:37:39 +08:00
parent a4c54305fb
commit 5a82eb6db6
5 changed files with 19 additions and 0 deletions

19
test/b32_test.js Normal file
View File

@ -0,0 +1,19 @@
var b32 = require('../lib/base32');
var assert = require('assert');
describe('Base32 module test', function() {
var a = b32.Base32;
describe('static decode() function', function() {
it("should print 'static Base32.decode'", function() {
assert.equal("static Base32.decode", a.decode());
});
});
describe('static random_gen() function', function() {
it("should print 'static Base32.random_gen'", function() {
assert.equal("static Base32.random_gen", a.random_gen());
})
})
});

View File