- Timestamp:
- 04/12/2024 05:45:23 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/interactivity-api/wpInteractivityAPIFunctions.php
r57836 r57987 72 72 * @covers wp_interactivity_process_directives_of_interactive_blocks 73 73 */ 74 public function test_process s_directives_of_single_interactive_block() {74 public function test_process_directives_of_single_interactive_block() { 75 75 $post_content = '<!-- wp:test/interactive-block { "block": 1 } /-->'; 76 76 $rendered_blocks = do_blocks( $post_content ); … … 88 88 * @covers wp_interactivity_process_directives_of_interactive_blocks 89 89 */ 90 public function test_process s_directives_of_multiple_interactive_blocks_in_paralell() {90 public function test_process_directives_of_multiple_interactive_blocks_in_parallel() { 91 91 $post_content = ' 92 92 <!-- wp:test/interactive-block { "block": 1 } /--> … … 114 114 * @covers wp_interactivity_process_directives_of_interactive_blocks 115 115 */ 116 public function test_process s_directives_of_interactive_block_inside_non_interactive_block() {116 public function test_process_directives_of_interactive_block_inside_non_interactive_block() { 117 117 $post_content = ' 118 118 <!-- wp:test/non-interactive-block { "block": 1 } --> … … 134 134 * @covers wp_interactivity_process_directives_of_interactive_blocks 135 135 */ 136 public function test_process s_directives_of_multple_interactive_blocks_inside_non_interactive_block() {136 public function test_process_directives_of_multiple_interactive_blocks_inside_non_interactive_block() { 137 137 $post_content = ' 138 138 <!-- wp:test/non-interactive-block { "block": 1 } --> … … 157 157 * @covers wp_interactivity_process_directives_of_interactive_blocks 158 158 */ 159 public function test_process s_directives_of_interactive_block_inside_multple_non_interactive_block() {159 public function test_process_directives_of_interactive_block_inside_multiple_non_interactive_block() { 160 160 $post_content = ' 161 161 <!-- wp:test/non-interactive-block { "block": 1 } --> … … 182 182 * @covers wp_interactivity_process_directives_of_interactive_blocks 183 183 */ 184 public function test_process s_directives_of_interactive_block_containing_non_interactive_block_without_directives() {184 public function test_process_directives_of_interactive_block_containing_non_interactive_block_without_directives() { 185 185 $post_content = ' 186 186 <!-- wp:test/interactive-block { "block": 1 } --> … … 204 204 * @covers wp_interactivity_process_directives_of_interactive_blocks 205 205 */ 206 public function test_process s_directives_of_interactive_block_containing_non_interactive_block_with_directives() {206 public function test_process_directives_of_interactive_block_containing_non_interactive_block_with_directives() { 207 207 $post_content = ' 208 208 <!-- wp:test/interactive-block { "block": 1 } --> … … 227 227 * @covers wp_interactivity_process_directives_of_interactive_blocks 228 228 */ 229 public function test_process s_directives_of_interactive_block_containing_nested_interactive_and_non_interactive_blocks() {229 public function test_process_directives_of_interactive_block_containing_nested_interactive_and_non_interactive_blocks() { 230 230 $post_content = ' 231 231 <!-- wp:test/interactive-block { "block": 1 } -->
Note: See TracChangeset
for help on using the changeset viewer.