Changeset 37599 for trunk/tests/phpunit/tests/term/getTerms.php
- Timestamp:
- 05/31/2016 12:53:27 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/term/getTerms.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/term/getTerms.php
r37519 r37599 25 25 'update_term_meta_cache' => false, 26 26 ) ); 27 28 $this->assertEqualSets( array( $term ), $found ); 29 } 30 31 /** 32 * @ticket 35495 33 * @ticket 35381 34 */ 35 public function test_legacy_params_as_query_string_should_be_properly_parsed() { 36 register_taxonomy( 'wptests_tax', 'post' ); 37 $term = self::factory()->term->create( array( 'taxonomy' => 'wptests_tax' ) ); 38 39 $found = get_terms( 'wptests_tax', 'hide_empty=0&fields=ids&update_term_meta_cache=0' ); 40 41 $this->assertEqualSets( array( $term ), $found ); 42 } 43 44 /** 45 * @ticket 35495 46 * @ticket 35381 47 */ 48 public function test_new_params_as_query_string_should_be_properly_parsed() { 49 register_taxonomy( 'wptests_tax', 'post' ); 50 $term = self::factory()->term->create( array( 'taxonomy' => 'wptests_tax' ) ); 51 52 $found = get_terms( 'taxonomy=wptests_tax&hide_empty=0&fields=ids&update_term_meta_cache=0' ); 27 53 28 54 $this->assertEqualSets( array( $term ), $found );
Note: See TracChangeset
for help on using the changeset viewer.