Create new class SubtaskTaskConversionModel
This commit is contained in:
@@ -229,30 +229,6 @@ class SubtaskModelTest extends Base
|
||||
$this->assertEquals(2, $subtasks[1]['position']);
|
||||
}
|
||||
|
||||
public function testConvertToTask()
|
||||
{
|
||||
$taskCreationModel = new TaskCreationModel($this->container);
|
||||
$taskFinderModel = new TaskFinderModel($this->container);
|
||||
$subtaskModel = new SubtaskModel($this->container);
|
||||
$projectModel = new ProjectModel($this->container);
|
||||
|
||||
$this->assertEquals(1, $projectModel->create(array('name' => 'test1')));
|
||||
$this->assertEquals(1, $taskCreationModel->create(array('title' => 'test 1', 'project_id' => 1)));
|
||||
|
||||
$this->assertEquals(1, $subtaskModel->create(array('title' => 'subtask #1', 'task_id' => 1, 'user_id' => 1, 'time_spent' => 2, 'time_estimated' => 3)));
|
||||
$task_id = $subtaskModel->convertToTask(1, 1);
|
||||
|
||||
$this->assertNotFalse($task_id);
|
||||
$this->assertEmpty($subtaskModel->getById(1));
|
||||
|
||||
$task = $taskFinderModel->getById($task_id);
|
||||
$this->assertEquals('subtask #1', $task['title']);
|
||||
$this->assertEquals(1, $task['project_id']);
|
||||
$this->assertEquals(1, $task['owner_id']);
|
||||
$this->assertEquals(2, $task['time_spent']);
|
||||
$this->assertEquals(3, $task['time_estimated']);
|
||||
}
|
||||
|
||||
public function testGetProjectId()
|
||||
{
|
||||
$taskCreationModel = new TaskCreationModel($this->container);
|
||||
|
||||
Reference in New Issue
Block a user