1
1
Fork 0

Move another API status tests

This commit is contained in:
Philipp Holzer 2021-12-30 22:17:03 +01:00
commit 29dbfb58c7
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
2 changed files with 24 additions and 32 deletions

View file

@ -535,8 +535,6 @@ class ApiTest extends FixtureTest
);
}
/**
* Test the api_format_items_embeded_images() function.
*
@ -552,36 +550,6 @@ class ApiTest extends FixtureTest
*/
}
/**
* Test the api_format_items() function.
* @doesNotPerformAssertions
*/
public function testApiFormatItems()
{
/*
$items = Post::selectToArray([], ['uid' => 42]);
foreach ($items as $item) {
$status = api_format_item($item);
self::assertStatus($status);
}
*/
}
/**
* Test the api_format_items() function with an XML result.
* @doesNotPerformAssertions
*/
public function testApiFormatItemsWithXml()
{
/*
$items = Post::selectToArray([], ['uid' => 42]);
foreach ($items as $item) {
$status = api_format_item($item, 'xml');
self::assertStatus($status);
}
*/
}
/**
* Test the api_lists_list() function.
*