blob: b6c876d35caa752ca1518361ab9cbdb8a40afa2e [file] [log] [blame]
var brorand = require('../');
var assert = require('assert');
describe('Brorand', function() {
it('should generate random numbers', function() {
assert.equal(brorand(100).length, 100);
});
});