api-test.js 202 Bytes
var brorand = require('../');
var assert = require('assert');

describe('Brorand', function() {
  it('should generate random numbers', function() {
    assert.equal(brorand(100).length, 100);
  });
});