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