| 336 | /** |
| 337 | * @ticket 29467 |
| 338 | */ |
| 339 | public function test_is_object_in_term_returns_true_if_term_name_begins_with_number() { |
| 340 | $post_ID = $this->factory->post->create(); |
| 341 | $cat_name = $post_ID . '_term_name'; |
| 342 | $cat_id = wp_insert_category( array( |
| 343 | 'cat_name' => $post_ID . '_term_name', |
| 344 | ) ); |
| 345 | |
| 346 | $this->assertFalse( is_object_in_term( $post_ID, 'category', $cat_name ) ); |
| 347 | wp_set_post_categories( $post_ID, array( $cat_id ) ); |
| 348 | $this->assertTrue( is_object_in_term( $post_ID, 'category', $cat_name ) ); |
| 349 | } |