Changeset 43571 for trunk/tests/phpunit/tests/taxonomy.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/taxonomy.php
r42382 r43571 67 67 $post_id = self::factory()->post->create(); 68 68 69 $this->expectOutputString( sprintf( 70 'Categories: <a href="%s">Uncategorized</a>.', 71 get_category_link( 1 ) 72 ) ); 69 $this->expectOutputString( 70 sprintf( 71 'Categories: <a href="%s">Uncategorized</a>.', 72 get_category_link( 1 ) 73 ) 74 ); 73 75 the_taxonomies( array( 'post' => $post_id ) ); 74 76 } … … 81 83 82 84 $output = get_echo( 83 'the_taxonomies', array( 85 'the_taxonomies', 86 array( 84 87 array( 85 88 'post' => $post_id, … … 91 94 92 95 $output = get_echo( 93 'the_taxonomies', array( 96 'the_taxonomies', 97 array( 94 98 array( 95 99 'post' => $post_id, … … 189 193 public function test_register_taxonomy_show_in_quick_edit_should_default_to_value_of_show_ui() { 190 194 register_taxonomy( 191 'wptests_tax_1', 'post', array( 195 'wptests_tax_1', 196 'post', 197 array( 192 198 'show_ui' => true, 193 199 ) … … 195 201 196 202 register_taxonomy( 197 'wptests_tax_2', 'post', array( 203 'wptests_tax_2', 204 'post', 205 array( 198 206 'show_ui' => false, 199 207 ) … … 450 458 public function test_get_ancestors_taxonomy() { 451 459 register_taxonomy( 452 'wptests_tax', 'post', array( 460 'wptests_tax', 461 'post', 462 array( 453 463 'hierarchical' => true, 454 464 ) … … 495 505 public function test_get_ancestors_post_type() { 496 506 register_post_type( 497 'wptests_pt', array( 507 'wptests_pt', 508 array( 498 509 'hierarchical' => true, 499 510 ) … … 532 543 public function test_get_ancestors_taxonomy_post_type_conflict_resource_type_taxonomy() { 533 544 register_post_type( 534 'wptests_conflict', array( 545 'wptests_conflict', 546 array( 535 547 'hierarchical' => true, 536 548 ) … … 549 561 550 562 register_taxonomy( 551 'wptests_conflict', 'post', array( 563 'wptests_conflict', 564 'post', 565 array( 552 566 'hierarchical' => true, 553 567 ) … … 576 590 public function test_nonpublicly_queryable_taxonomy_should_not_be_queryable_using_taxname_query_var() { 577 591 register_taxonomy( 578 'wptests_tax', 'post', array( 592 'wptests_tax', 593 'post', 594 array( 579 595 'publicly_queryable' => false, 580 596 ) … … 602 618 603 619 register_taxonomy( 604 'wptests_tax', 'post', array( 620 'wptests_tax', 621 'post', 622 array( 605 623 'publicly_queryable' => false, 606 624 ) … … 639 657 public function test_nonpublicly_queryable_taxonomy_should_not_be_queryable_using_taxonomy_and_term_vars() { 640 658 register_taxonomy( 641 'wptests_tax', 'post', array( 659 'wptests_tax', 660 'post', 661 array( 642 662 'publicly_queryable' => false, 643 663 ) … … 663 683 public function test_public_taxonomy_should_be_publicly_queryable() { 664 684 register_taxonomy( 665 'wptests_tax', 'post', array( 685 'wptests_tax', 686 'post', 687 array( 666 688 'public' => true, 667 689 ) … … 689 711 public function test_private_taxonomy_should_not_be_publicly_queryable() { 690 712 register_taxonomy( 691 'wptests_tax', 'post', array( 713 'wptests_tax', 714 'post', 715 array( 692 716 'public' => false, 693 717 ) … … 715 739 public function test_private_taxonomy_should_be_overridden_by_publicly_queryable() { 716 740 register_taxonomy( 717 'wptests_tax', 'post', array( 741 'wptests_tax', 742 'post', 743 array( 718 744 'public' => false, 719 745 'publicly_queryable' => true, … … 742 768 public function test_query_var_should_be_forced_to_false_for_non_public_taxonomy() { 743 769 register_taxonomy( 744 'wptests_tax', 'post', array( 770 'wptests_tax', 771 'post', 772 array( 745 773 'public' => false, 746 774 'query_var' => true, … … 798 826 799 827 register_taxonomy( 800 'foo', 'post', array( 828 'foo', 829 'post', 830 array( 801 831 'query_var' => 'bar', 802 832 'rewrite' => true, … … 891 921 892 922 register_taxonomy( 893 $taxonomy_name, array( 'post' ), array( 923 $taxonomy_name, 924 array( 'post' ), 925 array( 894 926 'hierarchical' => false, 895 927 'meta_box_cb' => 'post_categories_meta_box',
Note: See TracChangeset
for help on using the changeset viewer.