From 710f2c7bb046b43ec9878ae795a181101f6d7515 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 5 Sep 2015 23:30:56 -0400 Subject: Improve unit tests --- tests/units/ActionTaskAssignColorLinkTest.php | 47 --------------------------- 1 file changed, 47 deletions(-) delete mode 100644 tests/units/ActionTaskAssignColorLinkTest.php (limited to 'tests/units/ActionTaskAssignColorLinkTest.php') diff --git a/tests/units/ActionTaskAssignColorLinkTest.php b/tests/units/ActionTaskAssignColorLinkTest.php deleted file mode 100644 index b0cd269e..00000000 --- a/tests/units/ActionTaskAssignColorLinkTest.php +++ /dev/null @@ -1,47 +0,0 @@ -container, 1, TaskLink::EVENT_CREATE_UPDATE); - $action->setParam('link_id', 2); - $action->setParam('color_id', 'green'); - - // We create a task in the first column - $tc = new TaskCreation($this->container); - $tf = new TaskFinder($this->container); - $tl = new TaskLink($this->container); - $p = new Project($this->container); - $this->assertEquals(1, $p->create(array('name' => 'test'))); - $this->assertEquals(1, $tc->create(array('title' => 'test', 'project_id' => 1))); - - // The color should be yellow - $task = $tf->getById(1); - $this->assertNotEmpty($task); - $this->assertEquals('yellow', $task['color_id']); - - $event = array( - 'project_id' => 1, - 'task_id' => 1, - 'link_id' => 2, - ); - - // Our event should be executed - $this->assertTrue($action->execute(new TaskLinkEvent($event))); - - // The color should be green - $task = $tf->getById(1); - $this->assertNotEmpty($task); - $this->assertEquals('green', $task['color_id']); - } -} -- cgit v1.2.3