@@ -554,6 +554,58 @@ describe('Base', function () {
554
554
assert . equal ( this . dummy . options . foo , 'bar' ) ;
555
555
} ) ;
556
556
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
+
557
609
it ( 'slice positional arguments when config.type is Array' , function ( ) {
558
610
this . dummy . argument ( 'bar' , { type : Array } ) ;
559
611
assert . deepEqual ( this . dummy . options . bar , [ 'bar' , 'baz' , 'bom' ] ) ;
0 commit comments