summaryrefslogtreecommitdiff
path: root/emoticons/tests/Emoticons.php
diff options
context:
space:
mode:
Diffstat (limited to 'emoticons/tests/Emoticons.php')
-rw-r--r--emoticons/tests/Emoticons.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/emoticons/tests/Emoticons.php b/emoticons/tests/Emoticons.php
new file mode 100644
index 0000000..e045022
--- /dev/null
+++ b/emoticons/tests/Emoticons.php
@@ -0,0 +1,23 @@
+<?php
+
+class Emoticons_Plugin extends PHPUnit_Framework_TestCase
+{
+
+ function setUp()
+ {
+ include_once __DIR__ . '/../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);
+ }
+}
+