@@ -677,8 +677,8 @@ public function test_installing_without_migrating_hook()
677
677
$ this ->artisan ('hook:install ' , [
678
678
'name ' => 'migrating-hook ' ,
679
679
'version ' => 'v1.0.0 ' ,
680
- '--without-migrating ' => true ,
681
- '--without-seeding ' => true ,
680
+ '--no-migrate ' => true ,
681
+ '--no-seed ' => true ,
682
682
]);
683
683
684
684
$ this ->assertFalse (Schema::hasTable ('tests ' ));
@@ -729,7 +729,7 @@ public function test_uninstalling_without_unmigrating_hook()
729
729
// Uninstall hook
730
730
$ this ->artisan ('hook:uninstall ' , [
731
731
'name ' => 'migrating-hook ' ,
732
- '--without-unmigrating ' => true ,
732
+ '--no-unmigrate ' => true ,
733
733
]);
734
734
735
735
$ this ->assertTrue (Schema::hasTable ('tests ' ));
@@ -795,8 +795,8 @@ public function test_updating_without_remigrating_hook()
795
795
$ this ->artisan ('hook:update ' , [
796
796
'name ' => 'migrating-hook ' ,
797
797
'version ' => 'v2.0.0 ' ,
798
- '--without-migrating ' => true ,
799
- '--without-seeding ' => true ,
798
+ '--no-migrate ' => true ,
799
+ '--no-seed ' => true ,
800
800
]);
801
801
802
802
$ this ->assertTrue (Schema::hasTable ('tests ' ));
@@ -831,7 +831,7 @@ public function test_installing_without_seeding_hook()
831
831
$ this ->artisan ('hook:install ' , [
832
832
'name ' => 'migrating-hook ' ,
833
833
'version ' => 'v1.0.0 ' ,
834
- '--without-seeding ' => true ,
834
+ '--no-seed ' => true ,
835
835
]);
836
836
837
837
$ this ->assertTrue (Schema::hasTable ('tests ' ));
@@ -856,7 +856,7 @@ public function test_unseeding_hook()
856
856
// Uninstall hook
857
857
$ this ->artisan ('hook:uninstall ' , [
858
858
'name ' => 'migrating-hook ' ,
859
- '--without-unmigrating ' => true ,
859
+ '--no-unmigrate ' => true ,
860
860
]);
861
861
862
862
$ this ->assertTrue (Schema::hasTable ('tests ' ));
@@ -881,8 +881,8 @@ public function test_uninstalling_without_unseeding()
881
881
// Uninstall hook
882
882
$ this ->artisan ('hook:uninstall ' , [
883
883
'name ' => 'migrating-hook ' ,
884
- '--without-unmigrating ' => true ,
885
- '--without-unseeding ' => true ,
884
+ '--no-unmigrate ' => true ,
885
+ '--no-unseed ' => true ,
886
886
]);
887
887
888
888
$ this ->assertTrue (Schema::hasTable ('tests ' ));
@@ -935,7 +935,7 @@ public function test_updating_without_reseeding()
935
935
$ this ->artisan ('hook:update ' , [
936
936
'name ' => 'migrating-hook ' ,
937
937
'version ' => 'v2.0.0 ' ,
938
- '--without-seeding ' => true ,
938
+ '--no-seed ' => true ,
939
939
]);
940
940
941
941
$ this ->assertTrue (Schema::hasTable ('tests ' ));
@@ -973,7 +973,7 @@ public function test_installing_without_publishing_assets()
973
973
$ this ->artisan ('hook:install ' , [
974
974
'name ' => 'migrating-hook ' ,
975
975
'version ' => 'v1.0.0 ' ,
976
- '--without-publishing ' => true ,
976
+ '--no-publish ' => true ,
977
977
]);
978
978
979
979
$ this ->assertFalse ($ filesystem ->exists (base_path ('public/vendor ' )));
@@ -1061,7 +1061,7 @@ public function test_uninstalling_without_unpublishing_assets()
1061
1061
// Uninstall hook
1062
1062
$ this ->artisan ('hook:uninstall ' , [
1063
1063
'name ' => 'migrating-hook ' ,
1064
- '--without-unpublishing ' => true ,
1064
+ '--no-unpublish ' => true ,
1065
1065
]);
1066
1066
1067
1067
$ this ->assertTrue ($ filesystem ->exists (base_path ('public/vendor/migration-hook/assets ' )));
@@ -1127,7 +1127,7 @@ public function test_updating_without_republishing_assets()
1127
1127
$ this ->artisan ('hook:update ' , [
1128
1128
'name ' => 'migrating-hook ' ,
1129
1129
'version ' => 'v2.0.0 ' ,
1130
- '--without-publishing ' => true ,
1130
+ '--no-publish ' => true ,
1131
1131
]);
1132
1132
1133
1133
$ this ->assertTrue ($ filesystem ->exists (base_path ('public/vendor/migration-hook/assets/script.js ' )));
@@ -1203,7 +1203,7 @@ public function test_force_republishing_assets_on_update_with_custom_changed_fil
1203
1203
$ this ->artisan ('hook:update ' , [
1204
1204
'name ' => 'migrating-hook ' ,
1205
1205
'version ' => 'v2.0.0 ' ,
1206
- '--force-publish ' => true ,
1206
+ '--force ' => true ,
1207
1207
]);
1208
1208
1209
1209
$ this ->assertTrue ($ filesystem ->exists (base_path ('public/vendor/migration-hook/assets/script.js ' )));
0 commit comments