12345678910111213141516171819202122232425 |
- <?php
- /**
- * @group formatting
- * @group post
- */
- class Tests_Formatting_SanitizePost extends WP_UnitTestCase {
- /**
- * @ticket 22324
- */
- function test_int_fields() {
- $post = $this->factory->post->create_and_get();
- $int_fields = array(
- 'ID' => 'integer',
- 'post_parent' => 'integer',
- 'menu_order' => 'integer',
- 'post_author' => 'string',
- 'comment_count' => 'string',
- );
- foreach ( $int_fields as $field => $type ) {
- $this->assertInternalType( $type, $post->$field, "field $field" );
- }
- }
- }
|