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