1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 10:52:47 +00:00

updated package.json

This commit is contained in:
2016-01-04 12:25:28 -05:00
parent 3443c97de4
commit 80ca24a715
1168 changed files with 73752 additions and 26424 deletions

39
node_modules/utile/test/random-string-test.js generated vendored Normal file
View File

@@ -0,0 +1,39 @@
/*
* common-test.js : testing common.js for expected functionality
*
* (C) 2011, Nodejitsu Inc.
*
*/
var assert = require('assert'),
vows = require('vows'),
utile = require('../lib');
vows.describe('utile/randomString').addBatch({
"When using utile": {
"the randomString() function": {
topic: function () {
return utile.randomString();
},
"should return 16 characters that are actually random by default": function (random) {
assert.isString(random);
assert.lengthOf(random, 16);
assert.notEqual(random, utile.randomString());
},
"when you can asked for different length strings": {
topic: function () {
return [utile.randomString(4), utile.randomString(128)];
},
"where they actually are of length 4, 128": function (strings) {
assert.isArray(strings);
assert.lengthOf(strings,2);
assert.isString(strings[0]);
assert.isString(strings[1]);
assert.lengthOf(strings[0], 4);
assert.lengthOf(strings[1], 128);
assert.notEqual(strings[0], strings[1].substr(0,4));
}
}
}
}
}).export(module);