Changeset 48817 for trunk/tests/phpunit/tests/formatting/WpTrimExcerpt.php
- Timestamp:
- 08/18/2020 03:08:19 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/WpTrimExcerpt.php
r46586 r48817 67 67 } 68 68 } 69 70 /** 71 * @ticket 51042 72 */ 73 public function test_should_generate_excerpt_for_empty_values() { 74 $post = self::factory()->post->create( 75 array( 76 'post_content' => 'Post content', 77 ) 78 ); 79 80 $this->assertSame( 'Post content', wp_trim_excerpt( '', $post ) ); 81 $this->assertSame( 'Post content', wp_trim_excerpt( null, $post ) ); 82 $this->assertSame( 'Post content', wp_trim_excerpt( false, $post ) ); 83 } 69 84 }
Note: See TracChangeset
for help on using the changeset viewer.