mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 09:54:03 +00:00
Fix issue 521: Array input for --tenants (#522)
* Fix issue 521: Array input for `--tenants` Tenancy for Laravel docs refer to using multiple `--tenants=<...> ` options when running a command for multiple tenants explicitly: https://tenancyforlaravel.com/docs/v3/console-commands However, the command input is not defined correctly to receive arrays. https://laravel.com/docs/7.x/artisan#input-arrays This PR adds a failing test, fixes the issue and corrects a typo in the contributing readme. * Styleci Co-authored-by: Dylan Harbour <dylanh@ringier.co.za>
This commit is contained in:
parent
f273ed4f1e
commit
e0af2e9945
3 changed files with 14 additions and 2 deletions
|
|
@ -190,4 +190,16 @@ class CommandsTest extends TestCase
|
|||
Artisan::call('tenants:migrate-fresh');
|
||||
$this->assertFalse(DB::table('users')->exists());
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function run_command_with_array_of_tenants_works()
|
||||
{
|
||||
$tenantId1 = Tenant::create()->getTenantKey();
|
||||
$tenantId2 = Tenant::create()->getTenantKey();
|
||||
Artisan::call('tenants:migrate-fresh');
|
||||
|
||||
$this->artisan("tenants:run foo --tenants=$tenantId1 --tenants=$tenantId2 --argument='a=foo' --option='b=bar' --option='c=xyz'")
|
||||
->expectsOutput('Tenant: ' . $tenantId1)
|
||||
->expectsOutput('Tenant: ' . $tenantId2);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue