Skip to content

Commit a852f62

Browse files
committedDec 2, 2016
Allow passing arguments to a Generator constructor in the same way as we pass options
1 parent f6f4dda commit a852f62

File tree

2 files changed

+56
-2
lines changed

2 files changed

+56
-2
lines changed
 

‎lib/index.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,9 @@ Base.prototype.parseOptions = function () {
318318
this._arguments.forEach(function (config, index) {
319319
var value;
320320
if (index >= parsedOpts._.length) {
321-
if ('default' in config) {
321+
if (config.name in this.options) {
322+
value = this.options[config.name];
323+
} else if ('default' in config) {
322324
value = config.default;
323325
} else {
324326
return;
@@ -332,7 +334,7 @@ Base.prototype.parseOptions = function () {
332334
}
333335

334336
parsedOpts[config.name] = value;
335-
});
337+
}.bind(this));
336338

337339
// Make the parsed options available to the instance
338340
_.extend(this.options, parsedOpts);

‎test/base.js

+52
Original file line numberDiff line numberDiff line change
@@ -554,6 +554,58 @@ describe('Base', function () {
554554
assert.equal(this.dummy.options.foo, 'bar');
555555
});
556556

557+
it('allows specifying default argument values', function () {
558+
var Generator = Base.extend({
559+
constructor: function () {
560+
Base.apply(this, arguments);
561+
562+
this.argument('bar', {default: 'baz'});
563+
}
564+
});
565+
566+
var gen = new Generator({
567+
env: this.env,
568+
resolved: 'test'
569+
});
570+
571+
assert.equal(gen.options.bar, 'baz');
572+
});
573+
574+
it('allows specifying default argument values', function () {
575+
var Generator = Base.extend({
576+
constructor: function () {
577+
Base.apply(this, arguments);
578+
579+
this.argument('bar', {default: 'baz'});
580+
}
581+
});
582+
583+
var gen = new Generator({
584+
env: this.env,
585+
resolved: 'test'
586+
});
587+
588+
assert.equal(gen.options.bar, 'baz');
589+
});
590+
591+
it('properly uses arguments values passed from constructor', function () {
592+
var Generator = Base.extend({
593+
constructor: function () {
594+
Base.apply(this, arguments);
595+
596+
this.argument('bar', {default: 'baz'});
597+
}
598+
});
599+
600+
var gen = new Generator({
601+
env: this.env,
602+
resolved: 'test',
603+
bar: 'foo'
604+
});
605+
606+
assert.equal(gen.options.bar, 'foo');
607+
});
608+
557609
it('slice positional arguments when config.type is Array', function () {
558610
this.dummy.argument('bar', { type: Array });
559611
assert.deepEqual(this.dummy.options.bar, ['bar', 'baz', 'bom']);

0 commit comments

Comments
 (0)
Please sign in to comment.