diff options
author | Valentin Popov <info@valentineus.link> | 2019-05-08 00:17:40 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2019-05-08 00:17:40 +0300 |
commit | e2627eaf86a6fa9ee13681d729c5ec1b53610971 (patch) | |
tree | 74fb4b98f8dd1847e48b573de55c8a9412971fba /tests/task_test.php | |
parent | eb4b9b69f862df8ba23cafc8cd5e4a887baa02f0 (diff) | |
download | local_webhooks-e2627eaf86a6fa9ee13681d729c5ec1b53610971.tar.xz local_webhooks-e2627eaf86a6fa9ee13681d729c5ec1b53610971.zip |
Fixed errors from CI
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'tests/task_test.php')
-rw-r--r-- | tests/task_test.php | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/tests/task_test.php b/tests/task_test.php index 1fe9bc2..7779261 100644 --- a/tests/task_test.php +++ b/tests/task_test.php @@ -36,6 +36,9 @@ final class local_webhooks_task_testcase extends advanced_testcase { * Testing add a task to the queue. */ public function test_add_task() { + global $DB; + + $DB->delete_records('task_adhoc'); $this->resetAfterTest(); manager::queue_adhoc_task(new notify()); @@ -53,6 +56,9 @@ final class local_webhooks_task_testcase extends advanced_testcase { * @throws \dml_exception */ public function test_execute_disabled() { + global $DB; + + $DB->delete_records('task_adhoc'); curl::mock_response('{}'); $this->resetAfterTest(); @@ -80,6 +86,9 @@ final class local_webhooks_task_testcase extends advanced_testcase { * @throws \dml_exception */ public function test_execute_enabled() { + global $DB; + + $DB->delete_records('task_adhoc'); curl::mock_response('{}'); $this->resetAfterTest(); @@ -116,10 +125,14 @@ final class local_webhooks_task_testcase extends advanced_testcase { * @throws \dml_exception */ public function test_observer_multiple() { - $generator = self::getDataGenerator(); + global $DB; + + $DB->delete_records('task_adhoc'); curl::mock_response('{}'); $this->resetAfterTest(); + $generator = self::getDataGenerator(); + $record = new record(); $record->events = ['\core\event\course_created']; $record->header = 'application/json'; @@ -159,10 +172,14 @@ final class local_webhooks_task_testcase extends advanced_testcase { * @throws \dml_exception */ public function test_observer_single() { - $generator = self::getDataGenerator(); + global $DB; + + $DB->delete_records('task_adhoc'); curl::mock_response('{}'); $this->resetAfterTest(); + $generator = self::getDataGenerator(); + $record = new record(); $record->events = ['\core\event\course_created']; $record->header = 'application/json'; |