1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/12602] Cleanup tests

PHPBB3-12602
This commit is contained in:
Tristan Darricau
2014-06-02 16:21:25 +02:00
parent 85e8d1c2ef
commit c3ccef10d1
4 changed files with 9 additions and 50 deletions

View File

@@ -1,18 +0,0 @@
<?php
class phpbb_cron_task_core_simple_not_runnable extends \phpbb\cron\task\base
{
public function get_name()
{
return get_class($this);
}
public function run()
{
}
public function is_runnable()
{
return false;
}
}

View File

@@ -1,12 +1,7 @@
<?php
class phpbb_cron_task_core_simple_ready extends \phpbb\cron\task\base
class phpbb_cron_task_simple_ready extends \phpbb\cron\task\base
{
public function get_name()
{
return get_class($this);
}
public function run()
{
}

View File

@@ -1,18 +0,0 @@
<?php
class phpbb_cron_task_core_simple_should_not_run extends \phpbb\cron\task\base
{
public function get_name()
{
return get_class($this);
}
public function run()
{
}
public function should_run()
{
return false;
}
}