1var brorand = require('../'); 2var assert = require('assert'); 3 4describe('Brorand', function() { 5 it('should generate random numbers', function() { 6 assert.equal(brorand(100).length, 100); 7 }); 8}); 9 10