summaryrefslogtreecommitdiff
path: root/tests/units/Model/TaskExternalLinkTest.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-01-30 20:54:07 -0500
committerFrederic Guillot <fred@kanboard.net>2016-01-30 20:54:07 -0500
commit4a52d327f7e555c336a428c457cf40c3d97bfab3 (patch)
tree5bcf5434b8a03f3b73bc0fa40b60879d061a37b8 /tests/units/Model/TaskExternalLinkTest.php
parent5c92f467867b43034b9e66b46b3b465ba9db655c (diff)
Fix typo in Mysql migration
Diffstat (limited to 'tests/units/Model/TaskExternalLinkTest.php')
-rw-r--r--tests/units/Model/TaskExternalLinkTest.php44
1 files changed, 0 insertions, 44 deletions
diff --git a/tests/units/Model/TaskExternalLinkTest.php b/tests/units/Model/TaskExternalLinkTest.php
index b3f01759..28ccab83 100644
--- a/tests/units/Model/TaskExternalLinkTest.php
+++ b/tests/units/Model/TaskExternalLinkTest.php
@@ -54,50 +54,6 @@ class TaskExternalLinkTest extends Base
$this->assertEquals(time(), $link['date_creation'], '', 2);
}
- public function testCreateWithNoType()
- {
- $projectModel = new Project($this->container);
- $taskCreationModel = new TaskCreation($this->container);
- $taskExternalLinkModel = new TaskExternalLink($this->container);
-
- $this->assertEquals(1, $projectModel->create(array('name' => 'Test')));
- $this->assertEquals(1, $taskCreationModel->create(array('title' => 'Test', 'project_id' => 1)));
- $this->assertFalse($taskExternalLinkModel->create(array('task_id' => 1, 'id' => '', 'url' => 'http://kanboard.net/', 'title' => 'My website', 'dependency' => 'related')));
- }
-
- public function testCreateWithNoDependency()
- {
- $projectModel = new Project($this->container);
- $taskCreationModel = new TaskCreation($this->container);
- $taskExternalLinkModel = new TaskExternalLink($this->container);
-
- $this->assertEquals(1, $projectModel->create(array('name' => 'Test')));
- $this->assertEquals(1, $taskCreationModel->create(array('title' => 'Test', 'project_id' => 1)));
- $this->assertFalse($taskExternalLinkModel->create(array('task_id' => 1, 'id' => '', 'url' => 'http://kanboard.net/', 'title' => 'My website', 'link_type' => 'test')));
- }
-
- public function testCreateWithNoTitle()
- {
- $projectModel = new Project($this->container);
- $taskCreationModel = new TaskCreation($this->container);
- $taskExternalLinkModel = new TaskExternalLink($this->container);
-
- $this->assertEquals(1, $projectModel->create(array('name' => 'Test')));
- $this->assertEquals(1, $taskCreationModel->create(array('title' => 'Test', 'project_id' => 1)));
- $this->assertFalse($taskExternalLinkModel->create(array('task_id' => 1, 'id' => '', 'url' => 'http://kanboard.net/', 'link_type' => 'test', 'dependency' => 'test')));
- }
-
- public function testCreateWithNoUrl()
- {
- $projectModel = new Project($this->container);
- $taskCreationModel = new TaskCreation($this->container);
- $taskExternalLinkModel = new TaskExternalLink($this->container);
-
- $this->assertEquals(1, $projectModel->create(array('name' => 'Test')));
- $this->assertEquals(1, $taskCreationModel->create(array('title' => 'Test', 'project_id' => 1)));
- $this->assertFalse($taskExternalLinkModel->create(array('task_id' => 1, 'id' => '', 'title' => 'test', 'link_type' => 'test', 'dependency' => 'test')));
- }
-
public function testModification()
{
$projectModel = new Project($this->container);