aboutsummaryrefslogtreecommitdiff
path: root/engine/tests/api/plugins.php
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2012-07-08 09:48:50 +0200
committerSem <sembrestels@riseup.net>2012-07-08 09:48:50 +0200
commit17c28c8161e8c551ce4e4a1345e525cbb785fb59 (patch)
treec5e650d7ccb11fe172318ff1dd7e2eddabfd08d3 /engine/tests/api/plugins.php
parent7fd67bc8ac6882f1a73aa7f8f907cd6c2a694272 (diff)
downloadelgg-17c28c8161e8c551ce4e4a1345e525cbb785fb59.tar.gz
elgg-17c28c8161e8c551ce4e4a1345e525cbb785fb59.tar.bz2
Fixes #3646. Added suport for Repository, Bugtracker and Donations in manifest.
Diffstat (limited to 'engine/tests/api/plugins.php')
-rw-r--r--engine/tests/api/plugins.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/engine/tests/api/plugins.php b/engine/tests/api/plugins.php
index 8ecb0a46c..66297266c 100644
--- a/engine/tests/api/plugins.php
+++ b/engine/tests/api/plugins.php
@@ -68,6 +68,9 @@ class ElggCorePluginsAPITest extends ElggCoreUnitTest {
'blurb' => 'A concise description.',
'description' => 'A longer, more interesting description.',
'website' => 'http://www.elgg.org/',
+ 'repository' => 'https://github.com/Elgg/Elgg',
+ 'bugtracker' => 'http://trac.elgg.org',
+ 'donations' => 'http://elgg.org/supporter.php',
'copyright' => '(C) Elgg Foundation 2011',
'license' => 'GNU General Public License version 2',
@@ -164,6 +167,21 @@ class ElggCorePluginsAPITest extends ElggCoreUnitTest {
$this->assertEqual($this->manifest18->getWebsite(), 'http://www.elgg.org/');
$this->assertEqual($this->manifest17->getWebsite(), 'http://www.elgg.org/');
}
+
+ public function testElggPluginManifestGetRepository() {
+ $this->assertEqual($this->manifest18->getRepository(), 'https://github.com/Elgg/Elgg');
+ $this->assertEqual($this->manifest17->getRepository(), '');
+ }
+
+ public function testElggPluginManifestGetBugtracker() {
+ $this->assertEqual($this->manifest18->getBugTracker(), 'http://trac.elgg.org');
+ $this->assertEqual($this->manifest17->getBugTracker(), '');
+ }
+
+ public function testElggPluginManifestGetDonationsPage() {
+ $this->assertEqual($this->manifest18->getDonationsPage(), 'http://elgg.org/supporter.php');
+ $this->assertEqual($this->manifest17->getDonationsPage(), '');
+ }
public function testElggPluginManifestGetCopyright() {
$this->assertEqual($this->manifest18->getCopyright(), '(C) Elgg Foundation 2011');