TenantAtlas/apps/platform/tests/Unit/TenantScopeTest.php
2026-04-08 09:33:16 +02:00

18 lines
490 B
PHP

<?php
use App\Models\Tenant;
use Illuminate\Foundation\Testing\RefreshDatabase;
uses(RefreshDatabase::class);
it('finds tenant by guid without casting to bigint', function () {
$tenant = Tenant::create([
'tenant_id' => 'b0091e5d-944f-4a34-bcd9-12cbfb7b75cf',
'name' => 'Test Tenant',
]);
$found = Tenant::query()->forTenant('b0091e5d-944f-4a34-bcd9-12cbfb7b75cf')->first();
expect($found)->not->toBeNull();
expect($found->id)->toBe($tenant->id);
});