2ccc1d3b83
Framework updates, and hack to get CI testing working
27 lines
487 B
PHP
27 lines
487 B
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use Tests\TestCase;
|
|
|
|
use App\Ldap\Entry;
|
|
|
|
class GetBaseDNTest extends TestCase
|
|
{
|
|
/**
|
|
* Test that we can get the Base DN of an LDAP server
|
|
*
|
|
* @return void
|
|
* @throws \LdapRecord\Models\ModelNotFoundException
|
|
* @covers \App\Ldap\Entry::baseDN()
|
|
*/
|
|
public function testBaseDNExists()
|
|
{
|
|
$o = (new Entry)->baseDN();
|
|
|
|
$this->assertIsObject($o);
|
|
$this->assertCount(1,$o->toArray());
|
|
$this->assertEquals('dc=Test',$o->first()->getDn());
|
|
}
|
|
}
|