Changeset 56642 for trunk/tests/phpunit/tests/taxonomy.php
- Timestamp:
- 09/21/2023 04:23:12 AM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/taxonomy.php
r56548 r56642 11 11 public function test_get_link_taxonomies() { 12 12 $this->assertSame( array( 'link_category' ), get_object_taxonomies( 'link' ) ); 13 } 14 15 public function test_get_block_taxonomies() { 16 $this->assertSame( array( 'wp_pattern_category' ), get_object_taxonomies( 'wp_block' ) ); 13 17 } 14 18 … … 120 124 $this->assertTrue( taxonomy_exists( 'post_tag' ) ); 121 125 $this->assertTrue( taxonomy_exists( 'link_category' ) ); 126 $this->assertTrue( taxonomy_exists( 'wp_pattern_category' ) ); 122 127 } 123 128
Note: See TracChangeset
for help on using the changeset viewer.