mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
18 lines
316 B
PHP
18 lines
316 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\Authentication;
|
|
|
|
/**
|
|
* @group functional
|
|
* @group legacy
|
|
*/
|
|
class ACLProviderTest extends \PhraseanetTestCase
|
|
{
|
|
public function testGetACL()
|
|
{
|
|
$acl = self::$DI['app']->getAclForUser(self::$DI['user']);
|
|
|
|
$this->assertInstanceOf('\ACL', $acl);
|
|
}
|
|
}
|