Changeset 43571 for trunk/tests/phpunit/tests/post/types.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/types.php
r42343 r43571 299 299 300 300 register_post_type( 301 'foo', array( 301 'foo', 302 array( 302 303 'public' => true, 303 304 'query_var' => 'bar', … … 319 320 320 321 register_post_type( 321 'foo', array( 322 'foo', 323 array( 322 324 'public' => true, 323 325 'query_var' => 'bar', … … 344 346 345 347 register_post_type( 346 'foo', array( 348 'foo', 349 array( 347 350 'public' => true, 348 351 'has_archive' => true, … … 362 365 363 366 register_post_type( 364 'foo', array( 367 'foo', 368 array( 365 369 'public' => true, 366 370 'capability_type' => 'bar', … … 387 391 388 392 register_post_type( 389 'foo', array( 393 'foo', 394 array( 390 395 'public' => true, 391 396 'supports' => array( 'editor', 'author', 'title' ), … … 412 417 413 418 register_post_type( 414 'foo', array( 419 'foo', 420 array( 415 421 'public' => true, 416 422 'taxonomies' => array( 'category', 'post_tag' ), … … 433 439 434 440 register_post_type( 435 'foo', array( 441 'foo', 442 array( 436 443 'public' => true, 437 444 ) … … 451 458 452 459 register_post_type( 453 'foo', array( 460 'foo', 461 array( 454 462 'public' => true, 455 463 'register_meta_box_cb' => '__return_empty_string', … … 470 478 471 479 register_post_type( 472 'foo', array( 480 'foo', 481 array( 473 482 'public' => true, 474 483 ) … … 489 498 public function test_post_type_does_not_exist_after_unregister_post_type() { 490 499 register_post_type( 491 'foo', array( 500 'foo', 501 array( 492 502 'public' => true, 493 503 )
Note: See TracChangeset
for help on using the changeset viewer.