Changeset 26028 for trunk/tests/phpunit/tests/term.php
- Timestamp:
- 11/06/2013 11:40:46 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/term.php
r26010 r26028 434 434 } 435 435 436 /** 437 * @ticket 17646 438 */ 436 439 function test_get_object_terms_types() { 437 440 $post_id = $this->factory->post->create(); … … 446 449 $term = array_shift( wp_get_object_terms( $post_id, $this->taxonomy, array( 'fields' => 'ids' ) ) ); 447 450 $this->assertInternalType( 'int', $term, 'term' ); 451 } 452 453 /** 454 * @ticket 25852 455 */ 456 function test_sanitize_term_field() { 457 $term = wp_insert_term( 'foo', $this->taxonomy ); 458 459 $this->assertEquals( 0, sanitize_term_field( 'parent', 0, $term['term_id'], $this->taxonomy, 'raw' ) ); 460 $this->assertEquals( 1, sanitize_term_field( 'parent', 1, $term['term_id'], $this->taxonomy, 'raw' ) ); 461 $this->assertEquals( 0, sanitize_term_field( 'parent', -1, $term['term_id'], $this->taxonomy, 'raw' ) ); 462 $this->assertEquals( 0, sanitize_term_field( 'parent', '', $term['term_id'], $this->taxonomy, 'raw' ) ); 448 463 } 449 464
Note: See TracChangeset
for help on using the changeset viewer.