mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-26 12:31:19 +01:00
23 lines
447 B
PHP
23 lines
447 B
PHP
<?php
|
|
|
|
namespace Roundcube\Plugins\Tests;
|
|
|
|
use Roundcube\Tests\ActionTestCase;
|
|
|
|
class AclTest extends ActionTestCase
|
|
{
|
|
/**
|
|
* Plugin object construction test
|
|
*/
|
|
public function test_constructor()
|
|
{
|
|
$rcube = \rcube::get_instance();
|
|
$plugin = new \acl($rcube->plugins);
|
|
|
|
$this->assertInstanceOf('acl', $plugin);
|
|
$this->assertInstanceOf('rcube_plugin', $plugin);
|
|
|
|
$plugin->init();
|
|
}
|
|
}
|