aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cron/task
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cron/task')
-rw-r--r--tests/cron/task/testmod/dummy_task.php23
-rw-r--r--tests/cron/task/testmod/second_dummy_task.php23
2 files changed, 0 insertions, 46 deletions
diff --git a/tests/cron/task/testmod/dummy_task.php b/tests/cron/task/testmod/dummy_task.php
deleted file mode 100644
index 5941157589..0000000000
--- a/tests/cron/task/testmod/dummy_task.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-/**
-*
-* @package testing
-* @copyright (c) 2010 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
-*
-*/
-
-class phpbb_cron_task_testmod_dummy_task extends phpbb_cron_task_base
-{
- public static $was_run = 0;
-
- public function run()
- {
- self::$was_run++;
- }
-
- public function should_run()
- {
- return true;
- }
-}
diff --git a/tests/cron/task/testmod/second_dummy_task.php b/tests/cron/task/testmod/second_dummy_task.php
deleted file mode 100644
index 7118b2ebe7..0000000000
--- a/tests/cron/task/testmod/second_dummy_task.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-/**
-*
-* @package testing
-* @copyright (c) 2010 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
-*
-*/
-
-class phpbb_cron_task_testmod_second_dummy_task extends phpbb_cron_task_base
-{
- public static $was_run = 0;
-
- public function run()
- {
- self::$was_run++;
- }
-
- public function should_run()
- {
- return true;
- }
-}