1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 22:24:03 +00:00

Revert "register dumcommand when L8"

This reverts commit f165fc58ba.
This commit is contained in:
Abrar Ahmad 2022-08-22 13:53:44 +05:00
parent 3ddb68e900
commit 2d2d3b88b0
2 changed files with 1 additions and 21 deletions

View file

@ -76,11 +76,6 @@ test('migrate command works with tenants option', function () {
});
test('migrate command loads schema state', function () {
if (! isVersion8()) {
$this->markTestSkipped('DumpCommand only exists since Laravel 8.0 or above');
}
$tenant = Tenant::create();
expect(Schema::hasTable('schema_users'))->toBeFalse();
@ -99,10 +94,6 @@ test('migrate command loads schema state', function () {
});
test('dump command works', function () {
if (! isVersion8()) {
$this->markTestSkipped('DumpCommand only exists since Laravel 8.0 or above');
}
$tenant = Tenant::create();
Artisan::call('tenants:migrate');
@ -219,8 +210,3 @@ function databaseConnectionSwitchedToDefault()
expect(DB::connection()->getDatabaseName())->toBe($originalDBName);
}
function isVersion8(): bool
{
return version_compare(app()->version(), '8.0', '>=');
}