Files
roundcubemail/plugins/help/tests/Help.php
Michael Voříšek d18406a8bd Fix binary operator spaces CS (#9330)
* align_single_space_minimal for assign

* assign operators grouping is not supported by PHP CS Fixer

* binary_operator_spaces = single_space

* fix anonymous function on single line

* align comments manually
2024-02-02 07:53:34 +01:00

40 lines
1021 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class Help_Plugin extends TestCase
{
public static function setUpBeforeClass(): void
{
include_once __DIR__ . '/../help.php';
}
/**
* Plugin object construction test
*/
public function test_constructor()
{
$rcube = rcube::get_instance();
$plugin = new help($rcube->plugins);
$this->assertInstanceOf('help', $plugin);
$this->assertInstanceOf('rcube_plugin', $plugin);
}
/**
* Test help_metadata()
*/
public function test_help_metadata()
{
$rcube = rcube::get_instance();
$plugin = new help($rcube->plugins);
$result = $plugin->help_metadata();
$this->assertCount(3, $result);
$this->assertMatchesRegularExpression('|\?_task=settings&_action=about&_framed=1$|', $result['about']);
$this->assertSame('self', $result['license']);
$this->assertSame('http://docs.roundcube.net/doc/help/1.1/en_US/', $result['index']);
}
}