summaryrefslogtreecommitdiff
path: root/tests/Base.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fguillot@users.noreply.github.com>2014-03-12 21:18:38 -0400
committerFrédéric Guillot <fguillot@users.noreply.github.com>2014-03-12 21:18:38 -0400
commit9722cf61520b166454ab7b4cda5b610d56f1fa77 (patch)
tree6c289dd1249034ddde341f4811cedf5b8e285166 /tests/Base.php
parentb27a78e3229af5b477dbc5b31ba2beec7a7238ca (diff)
Add unit tests for automatic actions
Diffstat (limited to 'tests/Base.php')
-rw-r--r--tests/Base.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/Base.php b/tests/Base.php
index 98dbf1b9..ba664c3a 100644
--- a/tests/Base.php
+++ b/tests/Base.php
@@ -12,6 +12,10 @@ require_once __DIR__.'/../models/user.php';
require_once __DIR__.'/../models/board.php';
require_once __DIR__.'/../models/action.php';
require_once __DIR__.'/../actions/task_close.php';
+require_once __DIR__.'/../actions/task_assign_specific_user.php';
+require_once __DIR__.'/../actions/task_assign_color_user.php';
+require_once __DIR__.'/../actions/task_assign_current_user.php';
+require_once __DIR__.'/../actions/task_duplicate_another_project.php';
abstract class Base extends PHPUnit_Framework_TestCase
{