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