Changeset 55562 for trunk/tests/phpunit/tests/functions/doEnclose.php
- Timestamp:
- 03/19/2023 12:03:30 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/functions/doEnclose.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions/doEnclose.php
r55337 r55562 29 29 * @since 5.3.0 30 30 * 31 * @dataProvider data_ test_do_enclose31 * @dataProvider data_do_enclose 32 32 */ 33 33 public function test_function_with_explicit_content_input( $content, $expected ) { … … 45 45 * @since 5.3.0 46 46 * 47 * @dataProvider data_ test_do_enclose47 * @dataProvider data_do_enclose 48 48 */ 49 49 public function test_function_with_implicit_content_input( $content, $expected ) { … … 73 73 * } 74 74 */ 75 public function data_ test_do_enclose() {75 public function data_do_enclose() { 76 76 return array( 77 77 'null' => array( … … 145 145 */ 146 146 public function test_function_should_delete_enclosed_link_when_no_longer_in_post_content() { 147 $data = $this->data_ test_do_enclose();147 $data = $this->data_do_enclose(); 148 148 149 149 // Create a post with a single movie link. … … 179 179 */ 180 180 public function test_function_should_support_post_object_input() { 181 $data = $this->data_ test_do_enclose();181 $data = $this->data_do_enclose(); 182 182 183 183 $post_object = self::factory()->post->create_and_get( … … 199 199 */ 200 200 public function test_function_enclosure_links_should_be_filterable() { 201 $data = $this->data_ test_do_enclose();201 $data = $this->data_do_enclose(); 202 202 203 203 $post_id = self::factory()->post->create(
Note: See TracChangeset
for help on using the changeset viewer.