This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community. Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it. https://www.freifunk-altdorf.de
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
707 B

var test = require('tape')
var unique = require('array-unique')
var random = require('./')
test('it works', function (assert) {
var number, l = 1000, cache = []
for (var i = 0; i < l; i++) {
number = random()
if (number <= 0) {
assert.fail('a random number was less than or equal to zero')
assert.end()
return
}
if (number >= 1) {
assert.fail('a random number was greater than or equal to one')
assert.end()
return
}
cache.push(number)
}
assert.pass('all ' + l + ' random numbers were greater than zero and less than one')
assert.equal(cache.length, unique(cache).length, 'all ' + l + ' random numbers were unique')
assert.end()
})