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