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/emoticons | |
parent | 7ae7cdf195f4a8b0449c9ab0d5f43f68a60efa76 (diff) |
Add basic tests for plugins
Diffstat (limited to 'plugins/emoticons')
-rw-r--r-- | plugins/emoticons/tests/Emoticons.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/emoticons/tests/Emoticons.php b/plugins/emoticons/tests/Emoticons.php new file mode 100644 index 000000000..4b6c303c2 --- /dev/null +++ b/plugins/emoticons/tests/Emoticons.php @@ -0,0 +1,23 @@ +<?php + +class Emoticons_Plugin extends PHPUnit_Framework_TestCase +{ + + function setUp() + { + include_once dirname(__FILE__) . '/../emoticons.php'; + } + + /** + * Plugin object construction test + */ + function test_constructor() + { + $rcube = rcube::get_instance(); + $plugin = new emoticons($rcube->api); + + $this->assertInstanceOf('emoticons', $plugin); + $this->assertInstanceOf('rcube_plugin', $plugin); + } +} + |