123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * @group menu
- * @group walker
- */
- class Tests_Menu_Walker_Nav_Menu_Edit extends WP_UnitTestCase {
- protected $_wp_nav_menu_max_depth;
- function setUp() {
- global $_wp_nav_menu_max_depth;
- parent::setUp();
- /** Walker_Nav_Menu_Edit class */
- require_once ABSPATH . 'wp-admin/includes/class-walker-nav-menu-edit.php';
- $this->walker = new Walker_Nav_Menu_Edit();
- $this->_wp_nav_menu_max_depth = $_wp_nav_menu_max_depth;
- }
- function tearDown() {
- global $_wp_nav_menu_max_depth;
- $_wp_nav_menu_max_depth = $this->_wp_nav_menu_max_depth;
- parent::tearDown();
- }
- /**
- * @ticket 36729
- */
- function test_original_title_prefix_should_not_be_shown_if_empty() {
- $expected = '';
- $post_id = $this->factory->post->create();
- $item = array(
- 'classes' => array(),
- 'description' => '',
- 'ID' => $post_id,
- 'menu_item_parent' => 0,
- 'menu_order' => 0,
- 'object_id' => $post_id,
- 'object' => 'post',
- 'post_excerpt' => get_the_excerpt( $post_id ),
- 'title' => get_the_title( $post_id ),
- 'type' => 'foobar',
- 'type_label' => 'Foo Bar',
- 'target' => '_blank',
- 'url' => '',
- 'xfn' => '',
- );
- $this->walker->start_el( $expected, (object) $item );
- $this->assertNotRegExp( '#<p class="link-to-original">\s*Original: <a href=""></a>#', $expected );
- }
- }
|