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:16:16 +0100 |
commit | b005927f919cbc09dccf71e8c638be45a8af37d0 (patch) | |
tree | dbe288be773386781f2145341a4bbdea385ac96b /plugins/redundant_attachments/tests/RedundantAttachments.php | |
parent | 7ae7cdf195f4a8b0449c9ab0d5f43f68a60efa76 (diff) |
Add basic tests for plugins
Diffstat (limited to 'plugins/redundant_attachments/tests/RedundantAttachments.php')
-rw-r--r-- | plugins/redundant_attachments/tests/RedundantAttachments.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/redundant_attachments/tests/RedundantAttachments.php b/plugins/redundant_attachments/tests/RedundantAttachments.php new file mode 100644 index 000000000..386f97e59 --- /dev/null +++ b/plugins/redundant_attachments/tests/RedundantAttachments.php @@ -0,0 +1,23 @@ +<?php + +class RedundantAttachments_Plugin extends PHPUnit_Framework_TestCase +{ + + function setUp() + { + include_once dirname(__FILE__) . '/../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); + } +} + |