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