mailcow/data/web/rc/plugins/hide_blockquote/tests/HideBlockquote.php
2017-02-21 22:27:11 +01:00

24 lines
480 B
PHP

<?php
class HideBlockquote_Plugin extends PHPUnit_Framework_TestCase
{
function setUp()
{
include_once __DIR__ . '/../hide_blockquote.php';
}
/**
* Plugin object construction test
*/
function test_constructor()
{
$rcube = rcube::get_instance();
$plugin = new hide_blockquote($rcube->api);
$this->assertInstanceOf('hide_blockquote', $plugin);
$this->assertInstanceOf('rcube_plugin', $plugin);
}
}