Skip to content

Commit

Permalink
MDL-42517 testing Changed events test to use assertDebuggingCalled()
Browse files Browse the repository at this point in the history
  • Loading branch information
micaherne committed Oct 25, 2013
1 parent 34fb354 commit 85e7a92
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/tests/eventslib_test.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -132,11 +132,8 @@ public function test_events_trigger__failed_instant() {
$this->assertEquals(1, events_trigger('test_instant', 'fail'), 'fail first event: %s'); $this->assertEquals(1, events_trigger('test_instant', 'fail'), 'fail first event: %s');
$this->assertEquals(1, events_trigger('test_instant', 'ok'), 'this one should fail too: %s'); $this->assertEquals(1, events_trigger('test_instant', 'ok'), 'this one should fail too: %s');


// We disable debugging for this next test. It'll make some noise when it fails to dispatch
// so that problems don't go permanently unnoticed.
$CFG->debug = 0;
$this->assertEquals(0, events_cron('test_instant'), 'all events should stay in queue: %s'); $this->assertEquals(0, events_cron('test_instant'), 'all events should stay in queue: %s');
$CFG->debug = $olddebug; $this->assertDebuggingCalled();


$this->assertEquals(2, events_pending_count('test_instant'), 'two events should in queue: %s'); $this->assertEquals(2, events_pending_count('test_instant'), 'two events should in queue: %s');
$this->assertEquals(0, eventslib_sample_function_handler('status'), 'verify no event dispatched yet: %s'); $this->assertEquals(0, eventslib_sample_function_handler('status'), 'verify no event dispatched yet: %s');
Expand Down

0 comments on commit 85e7a92

Please sign in to comment.