Themes: Move the test for `post-formats` theme support to a more appropriate place.

Follow-up to [49344].

See #51390.

git-svn-id: https://develop.svn.wordpress.org/trunk@49354 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-10-28 15:12:40 +00:00
parent 7e4debe75c
commit 4f6eee8e72
3 changed files with 11 additions and 11 deletions

View File

@ -2481,7 +2481,7 @@ function get_theme_starter_content() {
* by adding it to the function signature.
* @since 5.5.0 The `core-block-patterns` feature was added and is enabled by default.
* @since 5.5.0 The `custom-logo` feature now also accepts 'unlink-homepage-logo'.
* @since 5.6.0 The `post-formats` feature now returns doing it wrong if no array is passed
* @since 5.6.0 The `post-formats` feature warns if no array is passed.
*
* @global array $_wp_theme_features
*

View File

@ -8,16 +8,6 @@ class Tests_Post_Formats extends WP_UnitTestCase {
parent::setUp();
}
/**
* @ticket 51390
*/
function test_post_format_doing_it_wrong() {
$this->setExpectedIncorrectUsage( "add_theme_support( 'post-formats' )" );
// The second parameter should be an array.
$this->assertFalse( add_theme_support( 'post-formats' ) );
}
function test_set_get_post_format_for_post() {
$post_id = self::factory()->post->create();

View File

@ -132,6 +132,16 @@ class Tests_Theme_Support extends WP_UnitTestCase {
$this->assertFalse( current_theme_supports( 'html5' ) );
}
/**
* @ticket 51390
*
* @expectedIncorrectUsage add_theme_support( 'post-formats' )
*/
function test_supports_post_formats_doing_it_wrong() {
// The second parameter should be an array.
$this->assertFalse( add_theme_support( 'post-formats' ) );
}
function supports_foobar( $yesno, $args, $feature ) {
if ( $args[0] === $feature[0] ) {
return true;