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