You appear to be a bot. Output may be restricted
Description
Make educated guesses on theme locations.
Usage
Tests_Nav_Menu_Theme_Change::test_location_guessing();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/menu/nav-menu.php
Lines:
1 to 18 of 18
public function test_location_guessing() { $this->register_nav_menu_locations( array( 'primary', 'secondary' ) ); $prev_theme_nav_menu_locations = array( 'header' => 1, 'footer' => 2, ); $old_next_theme_nav_menu_locations = array(); $new_next_theme_nav_menu_locations = wp_map_nav_menu_locations( $old_next_theme_nav_menu_locations, $prev_theme_nav_menu_locations ); $expected_nav_menu_locations = array( 'primary' => 1, 'secondary' => 2, ); $this->assertSame( $expected_nav_menu_locations, $new_next_theme_nav_menu_locations ); }