Example #1
0
 public function testGetServices()
 {
     $services = service::get_services('local_nagios');
     $this->assertNotNull($services);
     $this->assertArrayHasKey('scheduled_task', $services);
     $services = service::get_services('non_existant');
     $this->assertNull($services);
 }