11 lines
359 B
PHP
11 lines
359 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Services\MonthlyPartitionManager;
|
|
|
|
it('knows lead_region_resolution_log partition key', function (): void {
|
|
expect(MonthlyPartitionManager::PARTITIONED_TABLES)->toHaveKey('lead_region_resolution_log');
|
|
expect(MonthlyPartitionManager::PARTITIONED_TABLES['lead_region_resolution_log'])->toBe('received_at');
|
|
});
|