blob: 3b6d889ad3e48b6d64764f4887210406d1621374 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"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()));
};
|