CapitalPDangit.php 954 B

1234567891011121314151617181920
  1. <?php
  2. // phpcs:disable WordPress.WP.CapitalPDangit.Misspelled -- 🙃
  3. /**
  4. * @group formatting
  5. */
  6. class Tests_Formatting_CapitalPDangit extends WP_UnitTestCase {
  7. function test_esc_attr_quotes() {
  8. global $wp_current_filter;
  9. $this->assertSame( 'Something about WordPress', capital_P_dangit( 'Something about Wordpress' ) );
  10. $this->assertSame( 'Something about (WordPress', capital_P_dangit( 'Something about (Wordpress' ) );
  11. $this->assertSame( 'Something about &#8216;WordPress', capital_P_dangit( 'Something about &#8216;Wordpress' ) );
  12. $this->assertSame( 'Something about &#8220;WordPress', capital_P_dangit( 'Something about &#8220;Wordpress' ) );
  13. $this->assertSame( 'Something about >WordPress', capital_P_dangit( 'Something about >Wordpress' ) );
  14. $this->assertSame( 'Wordpress', capital_P_dangit( 'Wordpress' ) );
  15. $wp_current_filter = array( 'the_title' );
  16. $this->assertSame( 'WordPress', capital_P_dangit( 'Wordpress' ) );
  17. }
  18. }