Sha256: 8b7671a0f3f4e74b744bf450924de0bfeedb151d5b4e322f691b911f5503daec

Contents?: true

Size: 1.17 KB

Versions: 19

Compression:

Stored size: 1.17 KB

Contents

/*
 * 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);

Version data entries

19 entries across 19 versions & 3 rubygems

Version Path
xcodebuild-helper-1.2.5 externals/ios-sim-master/node_modules/utile/test/random-string-test.js
xcodebuild-helper-1.2.3 externals/ios-sim-master/node_modules/utile/test/random-string-test.js
hooch-0.4.2 jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
hooch-0.4.1 jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
hooch-0.4.0 jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
hooch-0.3.0 jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
hooch-0.2.1 jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
hooch-0.2.0 jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
hooch-0.1.0 jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
hooch-0.0.8 jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
hooch-0.0.7 jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
hooch-0.0.6 jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
entangled-0.0.16 spec/dummy/public/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
entangled-0.0.15 spec/dummy/public/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
entangled-0.0.14 spec/dummy/public/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
entangled-0.0.13 spec/dummy/public/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
entangled-0.0.12 spec/dummy/public/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
entangled-0.0.11 spec/dummy/public/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js
entangled-0.0.10 spec/dummy/public/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js