Changeset 51124 for trunk/tests/phpunit/tests/post/revisions.php
- Timestamp:
- 06/08/2021 11:23:12 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/revisions.php
r50949 r51124 636 636 $this->assertSame( $expected, wp_revisions_to_keep( $post ) ); 637 637 } 638 639 640 /* 641 * Verify that trying to create a revision with an invalid ID returns a WP_Error. 642 * 643 * 644 * @ticket 30009 645 */ 646 public function test_wp_save_post_revision_error() { 647 $post = self::factory()->post->create_and_get( 648 array( 649 'ID' => PHP_INT_MAX, 650 ) 651 ); 652 $revision = _wp_put_post_revision( $post ); 653 $this->assertTrue( is_wp_error( $revision ) ); 654 } 638 655 }
Note: See TracChangeset
for help on using the changeset viewer.