Changeset 45888 for trunk/tests/phpunit/tests/term/query.php
- Timestamp:
- 08/23/2019 04:04:07 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/term/query.php
r45584 r45888 768 768 return array( 555 ); 769 769 } 770 771 /** 772 * @ticket 37728 773 */ 774 public function test_hide_empty_should_include_empty_parents_of_nonempty_children() { 775 register_taxonomy( 776 'wptests_tax', 777 'post', 778 array( 779 'hierarchical' => true, 780 ) 781 ); 782 783 $t1 = self::factory()->term->create( 784 array( 785 'taxonomy' => 'wptests_tax', 786 ) 787 ); 788 789 $t2 = self::factory()->term->create( 790 array( 791 'taxonomy' => 'wptests_tax', 792 'parent' => $t1, 793 ) 794 ); 795 796 $p = self::factory()->post->create(); 797 798 wp_set_object_terms( $p, $t2, 'wptests_tax' ); 799 800 $q = new WP_Term_Query( 801 array( 802 'taxonomy' => 'wptests_tax', 803 'hide_empty' => true, 804 'fields' => 'ids', 805 ) 806 ); 807 808 $this->assertContains( $t1, $q->terms ); 809 } 810 811 /** 812 * @ticket 37728 813 */ 814 public function test_hide_empty_should_include_empty_parents_of_nonempty_children_when_category_is_unspecified() { 815 register_taxonomy( 816 'wptests_tax', 817 'post', 818 array( 819 'hierarchical' => true, 820 ) 821 ); 822 823 $t1 = self::factory()->term->create( 824 array( 825 'taxonomy' => 'wptests_tax', 826 ) 827 ); 828 829 $t2 = self::factory()->term->create( 830 array( 831 'taxonomy' => 'wptests_tax', 832 'parent' => $t1, 833 ) 834 ); 835 836 $p = self::factory()->post->create(); 837 838 wp_set_object_terms( $p, $t2, 'wptests_tax' ); 839 840 $q = new WP_Term_Query( 841 array( 842 'hide_empty' => true, 843 'fields' => 'ids', 844 ) 845 ); 846 847 $this->assertContains( $t1, $q->terms ); 848 } 770 849 }
Note: See TracChangeset
for help on using the changeset viewer.