The function is entirely unnecessary. Change-Id: I805520e5355119e872e602d0bfc93be26f227128
23 lines
352 B
PHP
23 lines
352 B
PHP
<?php
|
|
|
|
/**
|
|
* @group API
|
|
* @group Database
|
|
* @group medium
|
|
*
|
|
* @covers ApiUnblock
|
|
*/
|
|
class ApiUnblockTest extends ApiTestCase {
|
|
/**
|
|
* @expectedException ApiUsageException
|
|
*/
|
|
public function testWithNoToken() {
|
|
$this->doApiRequest(
|
|
[
|
|
'action' => 'unblock',
|
|
'user' => 'UTApiBlockee',
|
|
'reason' => 'Some reason',
|
|
]
|
|
);
|
|
}
|
|
}
|