random-uniq.js #1

  • //
  • guest/
  • jen_bottom/
  • ember/
  • tutorial/
  • testapp/
  • node_modules/
  • es5-ext/
  • test/
  • string/
  • random-uniq.js
  • View
  • Commits
  • Open Download .zip Download (319 B)
"use strict";

var isValidFormat = RegExp.prototype.test.bind(/^[a-z0-9]+$/);

module.exports = function (t, a) {
	a(typeof t(), "string");
	a.ok(t().length > 7);
	a.not(t(), t());
	a.ok(isValidFormat(t()));
	a.ok(isValidFormat(t()));
	a.ok(isValidFormat(t()));
	a.ok(isValidFormat(t()));
	a.ok(isValidFormat(t()));
};
# Change User Description Committed
#1 23539 jenbottom Adding the basic code for ember test appk, created with 'ember new' command