diff options
author | Minteck <contact@minteck.org> | 2021-12-21 16:50:49 +0100 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2021-12-21 16:50:49 +0100 |
commit | 20204baf1807825af4798ad03bfb329e4da05bc5 (patch) | |
tree | 1568515fa1e4592206ed5d2327b39e6b443cbd03 /node_modules/utile/test/random-string-test.js | |
download | bingoloto-remote-20204baf1807825af4798ad03bfb329e4da05bc5.tar.gz bingoloto-remote-20204baf1807825af4798ad03bfb329e4da05bc5.tar.bz2 bingoloto-remote-20204baf1807825af4798ad03bfb329e4da05bc5.zip |
Commit
Diffstat (limited to 'node_modules/utile/test/random-string-test.js')
-rw-r--r-- | node_modules/utile/test/random-string-test.js | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/node_modules/utile/test/random-string-test.js b/node_modules/utile/test/random-string-test.js new file mode 100644 index 0000000..84e9c8b --- /dev/null +++ b/node_modules/utile/test/random-string-test.js @@ -0,0 +1,39 @@ +/* + * common-test.js : testing common.js for expected functionality + * + * (C) 2011, Charlie Robbins & the Contributors + * + */ + +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); |