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