summaryrefslogtreecommitdiff
path: root/tests/integration/TaskProcedureTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/TaskProcedureTest.php')
-rw-r--r--tests/integration/TaskProcedureTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/integration/TaskProcedureTest.php b/tests/integration/TaskProcedureTest.php
index f456ae52..54527939 100644
--- a/tests/integration/TaskProcedureTest.php
+++ b/tests/integration/TaskProcedureTest.php
@@ -28,6 +28,7 @@ class TaskProcedureTest extends BaseProcedureTest
$this->assertNotNull($task);
$this->assertEquals('red', $task['color_id']);
$this->assertEquals($this->taskTitle, $task['title']);
+ $this->assertArrayHasKey('url', $task);
}
public function assertGetTaskByReference()
@@ -45,6 +46,7 @@ class TaskProcedureTest extends BaseProcedureTest
$tasks = $this->app->getAllTasks($this->projectId);
$this->assertInternalType('array', $tasks);
$this->assertNotEmpty($tasks);
+ $this->assertArrayHasKey('url', $tasks[0]);
}
public function assertOpenCloseTask()