aboutsummaryrefslogtreecommitdiff
path: root/engine/tests/api/plugins.php
diff options
context:
space:
mode:
authorBrett Profitt <brett.profitt@gmail.com>2011-09-28 22:11:10 -0700
committerBrett Profitt <brett.profitt@gmail.com>2011-09-28 22:11:10 -0700
commit7185782ef2b0279757d3ad187f0fec06b37185c3 (patch)
tree9c493eba958e74f97276910fc73a5da90a839d46 /engine/tests/api/plugins.php
parent90f5e694f6e7005f35297f9493f5caeedcf25a8c (diff)
downloadelgg-7185782ef2b0279757d3ad187f0fec06b37185c3.tar.gz
elgg-7185782ef2b0279757d3ad187f0fec06b37185c3.tar.bz2
Refs #3808. Removed failing tests for manifest translations.
Diffstat (limited to 'engine/tests/api/plugins.php')
-rw-r--r--engine/tests/api/plugins.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/engine/tests/api/plugins.php b/engine/tests/api/plugins.php
index 00b0d4513..72092b688 100644
--- a/engine/tests/api/plugins.php
+++ b/engine/tests/api/plugins.php
@@ -215,18 +215,6 @@ class ElggCorePluginsAPITest extends ElggCoreUnitTest {
$this->assertEqual($this->package17->getManifest()->getDescription(), 'A 1.7-style manifest.');
}
- public function testElggPluginManifestGetDescriptionTranslated() {
- $en = array(
- $this->package18->getManifest()->getDescription() => 'A translated 1.8 description!',
- $this->package17->getManifest()->getDescription() => 'A translated 1.7 description!',
- );
-
- add_translation('en', $en);
-
- $this->assertEqual($this->package18->getManifest()->getDescription(), 'A translated 1.8 description!');
- $this->assertEqual($this->package17->getManifest()->getDescription(), 'A translated 1.7 description!');
- }
-
public function testElggPluginManifestGetCategories() {
$categories = array(
'Admin', 'ServiceAPI'