1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-24 09:30:34 +01:00

Merge branch '3.3.x'

This commit is contained in:
Marc Alexander 2020-05-03 11:01:54 +02:00
commit 220cbb7f91
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -53,11 +53,21 @@ class phpbb_auth_provider_ldap_test extends phpbb_database_test_case
*/
public function test_init()
{
if (!extension_loaded('ldap'))
{
$this->markTestSkipped('LDAP extension not available.');
}
$this->assertFalse($this->provider->init());
}
public function test_login()
{
if (!extension_loaded('ldap'))
{
$this->markTestSkipped('LDAP extension not available.');
}
$username = 'admin';
$password = 'adminadmin';