diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-01-19 12:16:16 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-01-19 12:17:34 +0100 |
commit | 2c195e03654885e2b642e35866443bb6d844eccc (patch) | |
tree | c4fdc907f60fe8ba346f7286fe6583aed8722664 /plugins/vcard_attachments/tests/VcardAttachments.php | |
parent | cc2ee75ea426240417067ee036f254a64a3b7bc0 (diff) |
Add basic tests for plugins
Diffstat (limited to 'plugins/vcard_attachments/tests/VcardAttachments.php')
-rw-r--r-- | plugins/vcard_attachments/tests/VcardAttachments.php | 23 |
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..35fd7f447 --- /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 dirname(__FILE__) . '/../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); + } +} + |