Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Authentication/ACLProviderTest.php
Nicolas Le Goff 21eec6dbbe Add ACL Service
2013-11-05 12:21:42 +01:00

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);
}
}