diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2011-10-13 22:08:26 -0700 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2011-10-13 22:08:26 -0700 |
commit | 96604b6836edc0ee2f9bfc58fdbaedf19a6f099c (patch) | |
tree | 3e5a970928925a533a119d3b07b0ea9444c1b743 /engine/tests | |
parent | a11aec8c7b88e78581a5550c059c2cfab099a02d (diff) | |
download | elgg-96604b6836edc0ee2f9bfc58fdbaedf19a6f099c.tar.gz elgg-96604b6836edc0ee2f9bfc58fdbaedf19a6f099c.tar.bz2 |
Fixes #3917. Removed uses of admin interface in manifests. Removed related code.
Diffstat (limited to 'engine/tests')
-rw-r--r-- | engine/tests/api/plugins.php | 5 | ||||
-rw-r--r-- | engine/tests/test_files/plugin_18/manifest.xml | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/engine/tests/api/plugins.php b/engine/tests/api/plugins.php index 72092b688..8f5f5dd1e 100644 --- a/engine/tests/api/plugins.php +++ b/engine/tests/api/plugins.php @@ -105,7 +105,6 @@ class ElggCorePluginsAPITest extends ElggCoreUnitTest { array('type' => 'plugin', 'name' => 'facebook_connect', 'version' => 1.0), ), - 'admin_interface' => 'simple', 'activate_on_install' => true ); @@ -265,10 +264,6 @@ class ElggCorePluginsAPITest extends ElggCoreUnitTest { $this->assertEqual($this->manifest17->getConflicts(), array()); } - public function testElggPluginManifestGetAdminInterface() { - $this->assertEqual($this->manifest18->getAdminInterface(), 'simple'); - } - public function testElggPluginManifestGetActivateOnInstall() { $this->assertEqual($this->manifest18->getActivateOnInstall(), true); } diff --git a/engine/tests/test_files/plugin_18/manifest.xml b/engine/tests/test_files/plugin_18/manifest.xml index 23f0fa0bf..445a41c2e 100644 --- a/engine/tests/test_files/plugin_18/manifest.xml +++ b/engine/tests/test_files/plugin_18/manifest.xml @@ -34,7 +34,6 @@ <category>ServiceAPI</category> - <admin_interface>simple</admin_interface> <activate_on_install>true</activate_on_install> <requires> |