Changeset 53128
- Timestamp:
- 04/11/2022 10:12:56 AM (3 years ago)
- Location:
- trunk/tests/phpunit/tests/block-supports
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/block-supports/border.php
r53076 r53128 4 4 */ 5 5 class Test_Block_Supports_Border extends WP_UnitTestCase { 6 7 6 /** 8 7 * @ticket 55505 8 * 9 * @covers ::wp_apply_border_support 9 10 */ 10 11 function test_border_color_slug_with_numbers_is_kebab_cased_properly() { … … 57 58 /** 58 59 * @ticket 55505 60 * 61 * @covers ::wp_apply_border_support 59 62 */ 60 63 function test_border_with_skipped_serialization_block_supports() { … … 102 105 /** 103 106 * @ticket 55505 107 * 108 * @covers ::wp_apply_border_support 104 109 */ 105 110 function test_radius_with_individual_skipped_serialization_block_supports() { -
trunk/tests/phpunit/tests/block-supports/colors.php
r53076 r53128 4 4 */ 5 5 class Tests_Block_Supports_Colors extends WP_UnitTestCase { 6 6 /** 7 * @ticket 54337 8 * 9 * @covers ::wp_apply_colors_support 10 */ 7 11 function test_color_slugs_with_numbers_are_kebab_cased_properly() { 8 12 register_block_type( … … 48 52 /** 49 53 * @ticket 55505 54 * 55 * @covers ::wp_apply_colors_support 50 56 */ 51 57 function test_color_with_skipped_serialization_block_supports() { … … 90 96 /** 91 97 * @ticket 55505 98 * 99 * @covers ::wp_apply_colors_support 92 100 */ 93 101 function test_gradient_with_individual_skipped_serialization_block_supports() { -
trunk/tests/phpunit/tests/block-supports/elements.php
r53012 r53128 17 17 /** 18 18 * Test wp_render_elements_support() with a simple paragraph and link color preset. 19 * @ticket 54337 20 * 21 * @covers ::wp_render_elements_support 19 22 */ 20 23 public function test_simple_paragraph_link_color() { … … 46 49 /** 47 50 * Test wp_render_elements_support() with a paragraph containing a class. 51 * @ticket 54337 52 * 53 * @covers ::wp_render_elements_support 48 54 */ 49 55 public function test_class_paragraph_link_color() { … … 76 82 /** 77 83 * Test wp_render_elements_support() with a paragraph containing a anchor. 84 * @ticket 54337 85 * 86 * @covers ::wp_render_elements_support 78 87 */ 79 88 public function test_anchor_paragraph_link_color() { -
trunk/tests/phpunit/tests/block-supports/layout.php
r53085 r53128 54 54 /** 55 55 * @ticket 55505 56 * 57 * @covers ::wp_restore_image_outer_container 56 58 */ 57 59 function test_outer_container_not_restored_for_non_aligned_image_block_with_non_themejson_theme() { … … 70 72 /** 71 73 * @ticket 55505 74 * 75 * @covers ::wp_restore_image_outer_container 72 76 */ 73 77 function test_outer_container_restored_for_aligned_image_block_with_non_themejson_theme() { … … 86 90 /** 87 91 * @ticket 55505 92 * 93 * @covers ::wp_restore_image_outer_container 88 94 * 89 95 * @dataProvider data_block_image_html_restored_outer_container … … 144 150 /** 145 151 * @ticket 55505 152 * 153 * @covers ::wp_restore_image_outer_container 146 154 */ 147 155 function test_outer_container_not_restored_for_aligned_image_block_with_themejson_theme() { -
trunk/tests/phpunit/tests/block-supports/spacing.php
r53076 r53128 4 4 */ 5 5 class Test_Block_Supports_Spacing extends WP_UnitTestCase { 6 7 6 /** 8 7 * @ticket 55505 8 * 9 * @covers ::wp_apply_spacing_support 9 10 */ 10 11 function test_spacing_style_is_applied() { … … 56 57 /** 57 58 * @ticket 55505 59 * 60 * @covers ::wp_apply_spacing_support 58 61 */ 59 62 function test_spacing_with_skipped_serialization_block_supports() { … … 104 107 /** 105 108 * @ticket 55505 109 * 110 * @covers ::wp_apply_spacing_support 106 111 */ 107 112 function test_margin_with_individual_skipped_serialization_block_supports() { -
trunk/tests/phpunit/tests/block-supports/typography.php
r53076 r53128 4 4 */ 5 5 class Tests_Block_Supports_Typography extends WP_UnitTestCase { 6 6 /** 7 * @ticket 54337 8 * 9 * @covers ::wp_apply_typography_support 10 */ 7 11 function test_font_size_slug_with_numbers_is_kebab_cased_properly() { 8 12 register_block_type( … … 33 37 unregister_block_type( 'test/font-size-slug-with-numbers' ); 34 38 } 35 39 /** 40 * @ticket 54337 41 * 42 * @covers ::wp_apply_typography_support 43 */ 36 44 function test_font_family_with_legacy_inline_styles_using_a_value() { 37 45 $block_name = 'test/font-family-with-inline-styles-using-value'; … … 65 73 /** 66 74 * @ticket 55505 75 * 76 * @covers ::wp_apply_typography_support 67 77 */ 68 78 function test_typography_with_skipped_serialization_block_supports() { … … 110 120 /** 111 121 * @ticket 55505 122 * 123 * @covers ::wp_apply_typography_support 112 124 */ 113 125 function test_letter_spacing_with_individual_skipped_serialization_block_supports() { … … 142 154 unregister_block_type( $block_name ); 143 155 } 144 156 /** 157 * @ticket 54337 158 * 159 * @covers ::wp_apply_typography_support 160 */ 145 161 function test_font_family_with_legacy_inline_styles_using_a_css_var() { 146 162 $block_name = 'test/font-family-with-inline-styles-using-css-var'; … … 171 187 unregister_block_type( $block_name ); 172 188 } 173 189 /** 190 * @ticket 54337 191 * 192 * @covers ::wp_apply_typography_support 193 */ 174 194 function test_font_family_with_class() { 175 195 $block_name = 'test/font-family-with-class';
Note: See TracChangeset
for help on using the changeset viewer.