Changeset 38572 for trunk/tests/phpunit/tests/admin/includesPost.php
- Timestamp:
- 09/08/2016 04:04:22 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/admin/includesPost.php
r38417 r38572 358 358 359 359 /** 360 * @ticket 30910 361 * @ticket 18306 362 */ 363 public function test_get_sample_permalink_html_should_use_preview_links_for_draft_and_pending_posts_with_no_post_name() { 364 $this->set_permalink_structure( '/%postname%/' ); 365 366 wp_set_current_user( self::$admin_id ); 367 368 $future_date = date( 'Y-m-d H:i:s', time() + 100 ); 369 $p = self::factory()->post->create( array( 'post_status' => 'pending', 'post_name' => '', 'post_date' => $future_date ) ); 370 371 $found = get_sample_permalink_html( $p ); 372 $post = get_post( $p ); 373 $this->assertContains( 'href="' . esc_url( get_preview_post_link( $post ) ), $found ); 374 } 375 376 /** 360 377 * @ticket 5305 361 378 */
Note: See TracChangeset
for help on using the changeset viewer.