fd22b0bf58
V2 (Laravel re-make)
9 lines
202 B
JavaScript
Vendored
9 lines
202 B
JavaScript
Vendored
var brorand = require('../');
|
|
var assert = require('assert');
|
|
|
|
describe('Brorand', function() {
|
|
it('should generate random numbers', function() {
|
|
assert.equal(brorand(100).length, 100);
|
|
});
|
|
});
|