Skip to content

Commit

Permalink
docs: add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Sep 25, 2023
1 parent ef35fd9 commit e3e0c07
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/system/Commands/Database/ShowTableInfoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,16 @@ public function testDbTableAllOptions(): void
EOL;
$this->assertStringContainsString($expected, $result);
}

public function testDbTableWithInvalidDbConfig(): void
{
$config = config(Database::class);
$config->tests['database'] = 'invalid database name';

command('db:table --show');

$result = $this->getNormalizedResult();

dd($result);
}
}
2 changes: 2 additions & 0 deletions user_guide_src/source/changelogs/v4.4.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ Deprecations
Bugs Fixed
**********

- **Spark:** Fixed a bug that spark may not show Exceptions.

See the repo's
`CHANGELOG.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md>`_
for a complete list of bugs fixed.

0 comments on commit e3e0c07

Please sign in to comment.