summaryrefslogtreecommitdiff
path: root/plugins/enigma/tests/Enigma.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2013-06-20 21:48:39 +0200
committerThomas Bruederli <thomas@roundcube.net>2013-06-20 21:48:39 +0200
commit6376aaff0c4dae5d85ca814f038ef8fbae8834ca (patch)
treea2d0e65e4165634a050a4d7c3a818c9fbb163a9a /plugins/enigma/tests/Enigma.php
parentb96be346de62308321d1191c393c569bfa56094f (diff)
Remove unfinished development plugin from release branch
Diffstat (limited to 'plugins/enigma/tests/Enigma.php')
-rw-r--r--plugins/enigma/tests/Enigma.php23
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);
- }
-}
-