@@ -49,7 +49,7 @@ public function it_can_dump_all_tables_without_modifications()
49
49
50
50
$ this ->app ['config ' ]['masked-dump.default ' ] = DumpSchema::define ()->allTables ();
51
51
52
- $ this ->artisan ('db:dump ' , [
52
+ $ this ->artisan ('db:masked- dump ' , [
53
53
'output ' => $ outputFile
54
54
]);
55
55
@@ -78,7 +78,7 @@ public function it_can_mask_user_names()
78
78
$ table ->mask ('name ' );
79
79
});
80
80
81
- $ this ->artisan ('db:dump ' , [
81
+ $ this ->artisan ('db:masked- dump ' , [
82
82
'output ' => $ outputFile
83
83
]);
84
84
@@ -107,7 +107,7 @@ public function it_can_replace_columns_with_static_values()
107
107
$ table ->replace ('password ' , 'test ' );
108
108
});
109
109
110
- $ this ->artisan ('db:dump ' , [
110
+ $ this ->artisan ('db:masked- dump ' , [
111
111
'output ' => $ outputFile
112
112
]);
113
113
@@ -137,7 +137,7 @@ public function it_can_replace_columns_with_faker_values()
137
137
$ table ->replace ('email ' , $ faker ->safeEmail ());
138
138
});
139
139
140
- $ this ->artisan ('db:dump ' , [
140
+ $ this ->artisan ('db:masked- dump ' , [
141
141
'output ' => $ outputFile
142
142
]);
143
143
@@ -165,7 +165,7 @@ public function it_can_dump_certain_tables_as_schema_only()
165
165
->schemaOnly ('migrations ' )
166
166
->schemaOnly ('users ' );
167
167
168
- $ this ->artisan ('db:dump ' , [
168
+ $ this ->artisan ('db:masked- dump ' , [
169
169
'output ' => $ outputFile
170
170
]);
171
171
0 commit comments