mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 15:03:25 +00:00
17 lines
356 B
PHP
17 lines
356 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\Authentication;
|
|
|
|
use Alchemy\Phrasea\Application;
|
|
use Alchemy\Phrasea\Authentication\ACLProvider;
|
|
|
|
class ACLProviderTest extends \PhraseanetPHPUnitAbstract
|
|
{
|
|
public function testGetACL()
|
|
{
|
|
$acl = self::$DI['app']['acl']->get(self::$DI['user']);
|
|
|
|
$this->assertInstanceOf('\ACL', $acl);
|
|
}
|
|
}
|