diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-06-20 21:48:39 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-06-20 21:48:39 +0200 |
commit | 6376aaff0c4dae5d85ca814f038ef8fbae8834ca (patch) | |
tree | a2d0e65e4165634a050a4d7c3a818c9fbb163a9a /plugins/enigma/tests/Enigma.php | |
parent | b96be346de62308321d1191c393c569bfa56094f (diff) |
Remove unfinished development plugin from release branch
Diffstat (limited to 'plugins/enigma/tests/Enigma.php')
-rw-r--r-- | plugins/enigma/tests/Enigma.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/plugins/enigma/tests/Enigma.php b/plugins/enigma/tests/Enigma.php deleted file mode 100644 index 0d0d8f8ae..000000000 --- a/plugins/enigma/tests/Enigma.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -class Enigma_Plugin extends PHPUnit_Framework_TestCase -{ - - function setUp() - { - include_once dirname(__FILE__) . '/../enigma.php'; - } - - /** - * Plugin object construction test - */ - function test_constructor() - { - $rcube = rcube::get_instance(); - $plugin = new enigma($rcube->api); - - $this->assertInstanceOf('enigma', $plugin); - $this->assertInstanceOf('rcube_plugin', $plugin); - } -} - |