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