Changeset 30042 for trunk/tests/phpunit/tests/term/getTerms.php
- Timestamp:
- 10/28/2014 02:56:33 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/term/getTerms.php
r29845 r30042 353 353 } 354 354 355 public function test_get_terms_by_slug() { 356 $t1 = $this->factory->tag->create( array( 'slug' => 'foo' ) ); 357 $t2 = $this->factory->tag->create( array( 'slug' => 'bar' ) ); 358 359 $found = get_terms( 'post_tag', array( 360 'hide_empty' => false, 361 'fields' => 'ids', 362 'slug' => 'foo', 363 ) ); 364 365 $this->assertEquals( array( $t1 ), $found ); 366 } 367 368 /** 369 * @ticket 23636 370 */ 371 public function test_get_terms_by_multiple_slugs() { 372 $t1 = $this->factory->tag->create( array( 'slug' => 'foo' ) ); 373 $t2 = $this->factory->tag->create( array( 'slug' => 'bar' ) ); 374 $t3 = $this->factory->tag->create( array( 'slug' => 'barry' ) ); 375 376 $found = get_terms( 'post_tag', array( 377 'hide_empty' => false, 378 'fields' => 'ids', 379 'slug' => array( 'foo', 'barry' ) 380 ) ); 381 382 $this->assertEquals( array( $t1, $t3 ), $found ); 383 } 384 355 385 public function test_get_terms_hierarchical_tax_hide_empty_false_fields_ids() { 356 386 // Set up a clean taxonomy.
Note: See TracChangeset
for help on using the changeset viewer.