Changeset 53128 for trunk/tests/phpunit/tests/block-supports/typography.php
- Timestamp:
- 04/11/2022 10:12:56 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.