Changeset 53572
- Timestamp:
- 06/24/2022 02:41:11 PM (3 years ago)
- Location:
- trunk/tests/phpunit/tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/admin/includesPost.php
r53559 r53572 828 828 /** 829 829 * @ticket 43559 830 */ 831 public function test_post_add_meta_empty_is_allowed() { 830 * 831 * @covers ::add_meta 832 */ 833 public function test_add_meta_allows_empty_values() { 832 834 $p = self::factory()->post->create(); 833 835 -
trunk/tests/phpunit/tests/ajax/AddMeta.php
r53561 r53572 15 15 * @ticket 43559 16 16 * 17 * @covers ::wp_ajax_add_meta 17 18 * @covers ::add_post_meta 18 * @covers ::wp_ajax_add_meta19 19 */ 20 public function test_ post_add_meta_empty_is_allowed_ajax() {20 public function test_wp_ajax_add_meta_allows_empty_values_on_adding() { 21 21 $post = self::factory()->post->create(); 22 22 … … 44 44 * @ticket 43559 45 45 * 46 * @covers ::wp_ajax_add_meta 46 47 * @covers ::update_metadata_by_mid 47 * @covers ::wp_ajax_add_meta48 48 */ 49 public function test_ update_metadata_by_mid_allows_empty_values_ajax() {49 public function test_wp_ajax_add_meta_allows_empty_values_on_updating() { 50 50 $post = self::factory()->post->create(); 51 51
Note: See TracChangeset
for help on using the changeset viewer.