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