Move current unit tests to integration tests

This commit is contained in:
wxa
2018-10-17 13:27:34 +03:00
parent b21ef30202
commit 87e515b89d
175 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<?php
namespace MailPoet\Cron\Workers\KeyCheck;
if(!defined('ABSPATH')) exit;
class KeyCheckWorkerMockImplementation extends KeyCheckWorker {
const TASK_TYPE = 'mock_key_check_worker';
function checkKey() {
return array('code' => 12345); // bogus code
}
}