mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
wp-tests-config.php can/should reside in the root of a develop checkout. `phpunit` should be run from the root. see #25088. git-svn-id: https://develop.svn.wordpress.org/trunk@25165 602fd350-edb4-49c9-b593-d223f7449a82
28 lines
575 B
PHP
28 lines
575 B
PHP
<?php
|
|
|
|
/**
|
|
* @group formatting
|
|
*/
|
|
class Tests_Formatting_SanitizeTrackbackUrls extends WP_UnitTestCase {
|
|
/**
|
|
* @ticket 21624
|
|
* @dataProvider breaks
|
|
*/
|
|
function test_sanitize_trackback_urls_with_multiple_urls( $break ) {
|
|
$this->assertEquals( "http://example.com\nhttp://example.org", sanitize_trackback_urls( "http://example.com{$break}http://example.org" ) );
|
|
}
|
|
|
|
function breaks() {
|
|
return array(
|
|
array( "\r\n\t " ),
|
|
array( "\r" ),
|
|
array( "\n" ),
|
|
array( "\t" ),
|
|
array( ' ' ),
|
|
array( ' ' ),
|
|
array( "\n " ),
|
|
array( "\r\n" ),
|
|
);
|
|
}
|
|
}
|