summaryrefslogtreecommitdiff
path: root/userinfo/tests/Userinfo.php
diff options
context:
space:
mode:
Diffstat (limited to 'userinfo/tests/Userinfo.php')
-rw-r--r--userinfo/tests/Userinfo.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/userinfo/tests/Userinfo.php b/userinfo/tests/Userinfo.php
new file mode 100644
index 0000000..7eb0758
--- /dev/null
+++ b/userinfo/tests/Userinfo.php
@@ -0,0 +1,23 @@
+<?php
+
+class Userinfo_Plugin extends PHPUnit_Framework_TestCase
+{
+
+ function setUp()
+ {
+ include_once __DIR__ . '/../userinfo.php';
+ }
+
+ /**
+ * Plugin object construction test
+ */
+ function test_constructor()
+ {
+ $rcube = rcube::get_instance();
+ $plugin = new userinfo($rcube->api);
+
+ $this->assertInstanceOf('userinfo', $plugin);
+ $this->assertInstanceOf('rcube_plugin', $plugin);
+ }
+}
+