mirror of
https://github.com/LanceGin/jsotp.git
synced 2026-04-17 00:01:31 +08:00
20 lines
560 B
JavaScript
20 lines
560 B
JavaScript
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());
|
|
})
|
|
})
|
|
});
|