From 4b2684e36e226315c5bd4b93f49ab2a5fc121303 Mon Sep 17 00:00:00 2001 From: brettp Date: Mon, 6 Dec 2010 15:23:01 +0000 Subject: Renamed 'elgg' manifest requirment to 'elgg_version' to be more in line with the current options. Removed assignments in if statements. 1.7 manifest files properly show elgg_version as a requirement. git-svn-id: http://code.elgg.org/elgg/trunk@7550 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/tests/api/plugins.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'engine/tests/api/plugins.php') diff --git a/engine/tests/api/plugins.php b/engine/tests/api/plugins.php index 61e2cdde6..c99609559 100644 --- a/engine/tests/api/plugins.php +++ b/engine/tests/api/plugins.php @@ -72,7 +72,7 @@ class ElggCorePluginsAPITest extends ElggCoreUnitTest { 'license' => 'GNU Public License version 2', 'requires' => array( - array('type' => 'elgg', 'version' => '3009030802', 'comparison' => 'lt'), + array('type' => 'elgg_version', 'version' => '3009030802', 'comparison' => 'lt'), array('type' => 'elgg_release', 'version' => '1.8-svn'), array('type' => 'php_extension', 'name' => 'gd'), array('type' => 'php_ini', 'name' => 'short_open_tag', 'value' => 'off'), @@ -175,7 +175,7 @@ class ElggCorePluginsAPITest extends ElggCoreUnitTest { public function testElggPluginManifestGetRequires() { $requires = array( - array('type' => 'elgg', 'version' => '3009030802', 'comparison' => 'lt'), + array('type' => 'elgg_version', 'version' => '3009030802', 'comparison' => 'lt'), array('type' => 'elgg_release', 'version' => '1.8-svn', 'comparison' => 'ge'), array('type' => 'php_extension', 'name' => 'gd', 'version' => '', 'comparison' => '='), array('type' => 'php_ini', 'name' => 'short_open_tag', 'value' => 'off', 'comparison' => '='), @@ -187,7 +187,11 @@ class ElggCorePluginsAPITest extends ElggCoreUnitTest { $this->assertEqual($this->package18->getManifest()->getRequires(), $requires); - $this->assertEqual($this->package17->getManifest()->getRequires(), array()); + $requires = array( + array('type' => 'elgg_version', 'version' => '2009030702', 'comparison' => 'ge') + ); + + $this->assertEqual($this->package17->getManifest()->getRequires(), $requires); } public function testElggPluginManifestGetDescription() { -- cgit v1.2.3