Changeset 31457
- Timestamp:
- 02/13/2015 11:33:56 PM (10 years ago)
- Location:
- trunk/tests/phpunit/tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/types.php
r31450 r31457 25 25 * @expectedIncorrectUsage register_post_type 26 26 */ 27 function test_register_post_type_ length_long() {27 function test_register_post_type_with_too_long_name() { 28 28 // post type too long 29 29 $this->assertInstanceOf( 'WP_Error', register_post_type( 'abcdefghijklmnopqrstuvwxyz0123456789' ) ); … … 35 35 * @expectedIncorrectUsage register_post_type 36 36 */ 37 function test_register_post_type_ length_short() {37 function test_register_post_type_with_empty_name() { 38 38 // post type too short 39 39 $this->assertInstanceOf( 'WP_Error', register_post_type( '' ) ); -
trunk/tests/phpunit/tests/taxonomy.php
r31449 r31457 155 155 156 156 /** 157 * @ticket 21593 158 * 159 * @expectedIncorrectUsage register_taxonomy 160 */ 161 function test_register_taxonomy_with_too_long_name() { 162 $this->assertInstanceOf( 'WP_Error', register_taxonomy( 'abcdefghijklmnopqrstuvwxyz0123456789', 'post', array() ) ); 163 } 164 165 /** 157 166 * @ticket 31135 158 167 * 159 168 * @expectedIncorrectUsage register_taxonomy 160 169 */ 161 function test_register_ short_taxonomy() {170 function test_register_taxonomy_with_empty_name() { 162 171 $this->assertInstanceOf( 'WP_Error', register_taxonomy( '', 'post', array() ) ); 163 }164 165 /**166 * @ticket 21593167 *168 * @expectedIncorrectUsage register_taxonomy169 */170 function test_register_long_taxonomy() {171 $this->assertInstanceOf( 'WP_Error', register_taxonomy( 'abcdefghijklmnopqrstuvwxyz0123456789', 'post', array() ) );172 172 } 173 173
Note: See TracChangeset
for help on using the changeset viewer.