diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-12-09 19:54:43 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-12-09 19:54:43 -0500 |
commit | 0cd31abbc4e520d93bc4a0f5480dc898bbe5f25b (patch) | |
tree | fc4a8d98cc8154d8cf899e76aa78b5abf9d9a1e9 /tests | |
parent | 3de00af08850914a482db250346282aef7ace61f (diff) |
Change API::getProjectByName() to reflect the documentation
Diffstat (limited to 'tests')
-rw-r--r-- | tests/functionals/ApiTest.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/functionals/ApiTest.php b/tests/functionals/ApiTest.php index da6b62f5..a9196121 100644 --- a/tests/functionals/ApiTest.php +++ b/tests/functionals/ApiTest.php @@ -80,6 +80,21 @@ class Api extends PHPUnit_Framework_TestCase $this->assertEquals(1, $project['id']); } + public function testGetProjectByName() + { + $project = $this->client->getProjectByName('API test'); + $this->assertNotEmpty($project); + $this->assertEquals(1, $project['id']); + + $project = $this->client->getProjectByName(array('name' => 'API test')); + $this->assertNotEmpty($project); + $this->assertEquals(1, $project['id']); + + $project = $this->client->getProjectByName('None'); + $this->assertEmpty($project); + $this->assertNull($project); + } + public function testUpdateProject() { $project = $this->client->getProjectById(1); |