Changeset 36113 for trunk/tests/phpunit/tests/admin/includesPost.php
- Timestamp:
- 12/28/2015 07:06:05 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/admin/includesPost.php
r35245 r36113 482 482 } 483 483 484 /** 485 * @ticket 35246 486 */ 487 public function test_post_exists_should_match_content_with_no_title() { 488 $title = ''; 489 $content = 'Foo Bar Baz'; 490 $p = self::factory()->post->create( array( 491 'post_title' => $title, 492 'post_content' => $content, 493 ) ); 494 495 $this->assertSame( $p, post_exists( $title, $content ) ); 496 } 497 484 498 public function test_post_exists_should_not_match_when_nonempty_content_doesnt_match() { 485 499 $title = 'Foo Bar';
Note: See TracChangeset
for help on using the changeset viewer.