/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
tests/Integration/Database/MariaDb/DatabaseMariaDbSchemaBuilderTest.php
32 строки
1 KB
Lucas Michot
[13.x] Enforce stricter assertions (#59749)
17 апр 2026, 16:15
Не верифицирован
17 апр 2026, 16:15
92fecdd
Код
Авторство
О чём код?
<?php namespace Illuminate\Tests\Integration\Database\MariaDb; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Schema; use PHPUnit\Framework\Attributes\RequiresOperatingSystem; use PHPUnit\Framework\Attributes\RequiresPhpExtension; #[RequiresOperatingSystem('Linux|Darwin')] #[RequiresPhpExtension('pdo_mysql')] class DatabaseMariaDbSchemaBuilderTest extends MariaDbTestCase { public function testAddCommentToTable() { Schema::create('users', function (Blueprint $table) { $table->id(); $table->comment('This is a comment'); }); $tableInfo = DB::table('information_schema.tables') ->where('table_schema', $this->app['config']->get('database.connections.mariadb.database')) ->where('table_name', 'users') ->select('table_comment as table_comment') ->first(); $this->assertSame('This is a comment', $tableInfo->table_comment); Schema::drop('users'); } }