summaryrefslogtreecommitdiff
path: root/tests/ActionTaskAssignColorUserTest.php
diff options
context:
space:
mode:
authorNala Ginrut <nalaginrut@gmail.com>2014-06-19 15:18:13 +0800
committerNala Ginrut <nalaginrut@gmail.com>2014-06-19 15:18:13 +0800
commitbfd1db41367f7931016931a94cf1b67396481c79 (patch)
tree2d696f2d8eca9ed2e4561c61c16584952d9f7b0b /tests/ActionTaskAssignColorUserTest.php
parentd0944e682d5a3491f72c5b566248b87fbaff032a (diff)
parentefdc959c555872677e599d2ff12e1263d719f3f2 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'tests/ActionTaskAssignColorUserTest.php')
-rw-r--r--tests/ActionTaskAssignColorUserTest.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/ActionTaskAssignColorUserTest.php b/tests/ActionTaskAssignColorUserTest.php
index 769ecc66..04e3172f 100644
--- a/tests/ActionTaskAssignColorUserTest.php
+++ b/tests/ActionTaskAssignColorUserTest.php
@@ -10,7 +10,6 @@ class ActionTaskAssignColorUser extends Base
public function testBadProject()
{
$action = new Action\TaskAssignColorUser(3, new Task($this->db, $this->event));
- $action->setParam('column_id', 5);
$event = array(
'project_id' => 2,
@@ -22,24 +21,9 @@ class ActionTaskAssignColorUser extends Base
$this->assertFalse($action->execute($event));
}
- public function testBadColumn()
- {
- $action = new Action\TaskAssignColorUser(3, new Task($this->db, $this->event));
- $action->setParam('column_id', 5);
-
- $event = array(
- 'project_id' => 3,
- 'task_id' => 3,
- 'column_id' => 3,
- );
-
- $this->assertFalse($action->execute($event));
- }
-
public function testExecute()
{
$action = new Action\TaskAssignColorUser(1, new Task($this->db, $this->event));
- $action->setParam('column_id', 2);
$action->setParam('user_id', 1);
$action->setParam('color_id', 'blue');