summaryrefslogtreecommitdiff
path: root/plugins/hide_blockquote/tests/HideBlockquote.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/hide_blockquote/tests/HideBlockquote.php')
-rw-r--r--plugins/hide_blockquote/tests/HideBlockquote.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/hide_blockquote/tests/HideBlockquote.php b/plugins/hide_blockquote/tests/HideBlockquote.php
new file mode 100644
index 000000000..90e209459
--- /dev/null
+++ b/plugins/hide_blockquote/tests/HideBlockquote.php
@@ -0,0 +1,23 @@
+<?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);
+ }
+}
+