Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Authentication/ACLProviderTest.php
Benoît Burnichon d645b92afa Add AclAware Trait
2015-07-02 12:33:18 +02:00

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