This is some cool Code

'; $expected = '

This is some cool Code

'; $this->assertSame( $expected, wp_rel_nofollow( $content ) ); } /** * @ticket 9959 */ public function test_convert_no_follow() { $content = '

This is some cool Code

'; $expected = '

This is some cool Code

'; $this->assertSame( $expected, wp_rel_nofollow( $content ) ); } /** * @ticket 11360 * @dataProvider data_wp_rel_nofollow */ public function test_wp_rel_nofollow( $input, $output ) { return $this->assertSame( wp_slash( $output ), wp_rel_nofollow( $input ) ); } public function data_wp_rel_nofollow() { $home_url_http = set_url_scheme( home_url(), 'http' ); $home_url_https = set_url_scheme( home_url(), 'https' ); return array( array( 'Double Quotes', 'Double Quotes', ), array( 'Double Quotes', 'Double Quotes', ), array( "Single Quotes", "Single Quotes", ), array( 'Multiple attributes', 'Multiple attributes', ), array( 'Multiple attributes', 'Multiple attributes', ), array( 'Multiple attributes', 'Multiple attributes', ), array( 'Everything at once', 'Everything at once', ), array( 'Home URL (http)', 'Home URL (http)', ), array( 'Home URL (https)', 'Home URL (https)', ), ); } public function test_append_no_follow_with_valueless_attribute() { $content = '

This is some cool Code

'; $expected = '

This is some cool Code

'; $this->assertSame( $expected, wp_rel_nofollow( $content ) ); } }