Make WordPress Core


Ignore:
Timestamp:
10/18/2015 01:34:29 AM (9 years ago)
Author:
johnbillion
Message:

Move the test_is_home_should_be_false_when_visiting_custom_endpoint_without_a_registered_query_var_and_page_on_front_is_set() test into a more appropriate place.

See #25143

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/rewrite.php

    r35242 r35256  
    291291
    292292    /**
    293      * @ticket 25143
    294      */
    295     public function test_is_home_should_be_false_when_visiting_custom_endpoint_without_a_registered_query_var_and_page_on_front_is_set() {
    296 
    297         $page_id = self::factory()->post->create( array( 'post_type' => 'page' ) );
    298         update_option( 'show_on_front', 'page' );
    299         update_option( 'page_on_front', $page_id );
    300 
    301         add_rewrite_endpoint( 'test', EP_ALL, false );
    302         flush_rewrite_rules();
    303 
    304         $this->go_to( home_url( '/test/1' ) );
    305 
    306         $this->assertQueryTrue( 'is_front_page', 'is_page', 'is_singular' );
    307         $this->assertFalse( is_home() );
    308     }
    309 
    310     /**
    311293     * @ticket 21970
    312294     */
Note: See TracChangeset for help on using the changeset viewer.