diff options
Diffstat (limited to 'plugins/hide_blockquote/tests/HideBlockquote.php')
-rw-r--r-- | plugins/hide_blockquote/tests/HideBlockquote.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/hide_blockquote/tests/HideBlockquote.php b/plugins/hide_blockquote/tests/HideBlockquote.php new file mode 100644 index 000000000..030c05324 --- /dev/null +++ b/plugins/hide_blockquote/tests/HideBlockquote.php @@ -0,0 +1,23 @@ +<?php + +class HideBlockquote_Plugin extends PHPUnit_Framework_TestCase +{ + + function setUp() + { + include_once dirname(__FILE__) . '/../hide_blockquote.php'; + } + + /** + * Plugin object construction test + */ + function test_constructor() + { + $rcube = rcube::get_instance(); + $plugin = new hide_blockquote($rcube->api); + + $this->assertInstanceOf('hide_blockquote', $plugin); + $this->assertInstanceOf('rcube_plugin', $plugin); + } +} + |