Skip to content

Commit fa49493

Browse files
committed
add test for pgsql connection
1 parent 58be4c3 commit fa49493

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/Feature/Configuration/Connections/PgsqlConnectionTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public function testCanResolve(): void
4141
'sslrootcert' => 'sslrootcert',
4242
'sslcrl' => 'sslcrl',
4343
'gssencmode' => 'gssencmode',
44+
'application_name' => 'application_name',
4445
'defaultTableOptions' => [],
4546
'driverOptions' => [],
4647
]);
@@ -59,6 +60,7 @@ public function testCanResolve(): void
5960
$this->assertEquals('sslcrl', $resolved['sslcrl']);
6061
$this->assertEquals('gssencmode', $resolved['gssencmode']);
6162
$this->assertEquals('prefix', $resolved['prefix']);
63+
$this->assertEquals('application_name', $resolved['application_name']);
6264
$this->assertCount(0, $resolved['defaultTableOptions']);
6365
$this->assertCount(0, $resolved['driverOptions']);
6466
}

0 commit comments

Comments
 (0)