Remove deprectated mediap tests

This commit is contained in:
Philipp Holzer 2021-12-30 21:57:55 +01:00
parent 0b08730a0b
commit 43a001bf73
Signed by: nupplaPhil
GPG Key ID: 24A7501396EB5432
1 changed files with 0 additions and 43 deletions

View File

@ -638,49 +638,6 @@ class ApiTest extends FixtureTest
);
}
/**
* Test the api_statuses_mediap() function.
*
* @return void
*/
public function testApiStatusesMediap()
{
/*
DI::args()->setArgc(2);
$_FILES = [
'media' => [
'id' => 666,
'size' => 666,
'width' => 666,
'height' => 666,
'tmp_name' => $this->getTempImage(),
'name' => 'spacer.png',
'type' => 'image/png'
]
];
$_GET['status'] = '<b>Status content</b>';
$result = api_statuses_mediap('json');
self::assertStatus($result['status']);
*/
}
/**
* Test the api_statuses_mediap() function without an authenticated user.
*
* @return void
*/
public function testApiStatusesMediapWithoutAuthenticatedUser()
{
// $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
// BasicAuth::setCurrentUserID();
// $_SESSION['authenticated'] = false;
// api_statuses_mediap('json');
}
/**
* Test the api_get_entitities() function.
*