Skip to content

Commit 88e296f

Browse files
ljharbJames Halliday
authored and
James Halliday
committed
Moving the name/opts/cb code out into a reusable internal function.
1 parent 2aa91e8 commit 88e296f

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

lib/test.js

+18-7
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@ var nextTick = typeof setImmediate !== 'undefined'
1414

1515
inherits(Test, EventEmitter);
1616

17-
function Test (name_, opts_, cb_) {
18-
var self = this;
17+
var getTestArgs = function (name_, opts_, cb_) {
1918
var name = '(anonymous)';
2019
var opts = {};
2120
var cb;
22-
21+
2322
for (var i = 0; i < arguments.length; i++) {
2423
switch (typeof arguments[i]) {
2524
case 'string':
@@ -32,14 +31,26 @@ function Test (name_, opts_, cb_) {
3231
cb = arguments[i];
3332
}
3433
}
35-
34+
35+
return {
36+
name: name,
37+
opts: opts,
38+
cb: cb
39+
};
40+
};
41+
42+
function Test (name_, opts_, cb_) {
43+
var self = this;
44+
45+
var args = getTestArgs(name_, opts_, cb_);
46+
3647
this.readable = true;
37-
this.name = name || '(anonymous)';
48+
this.name = args.name || '(anonymous)';
3849
this.assertCount = 0;
3950
this.pendingCount = 0;
40-
this._skip = opts.skip || false;
51+
this._skip = args.opts.skip || false;
4152
this._plan = undefined;
42-
this._cb = cb;
53+
this._cb = args.cb;
4354
this._progeny = [];
4455
this._ok = true;
4556
this.end = function () {

0 commit comments

Comments
 (0)