summaryrefslogtreecommitdiff
path: root/help/tests/Help.php
diff options
context:
space:
mode:
Diffstat (limited to 'help/tests/Help.php')
-rw-r--r--help/tests/Help.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/help/tests/Help.php b/help/tests/Help.php
new file mode 100644
index 0000000..ff5771b
--- /dev/null
+++ b/help/tests/Help.php
@@ -0,0 +1,23 @@
+<?php
+
+class Help_Plugin extends PHPUnit_Framework_TestCase
+{
+
+ function setUp()
+ {
+ include_once __DIR__ . '/../help.php';
+ }
+
+ /**
+ * Plugin object construction test
+ */
+ function test_constructor()
+ {
+ $rcube = rcube::get_instance();
+ $plugin = new help($rcube->api);
+
+ $this->assertInstanceOf('help', $plugin);
+ $this->assertInstanceOf('rcube_plugin', $plugin);
+ }
+}
+