wordpress-develop/tests/phpunit/tests/formatting/sanitizeTrackbackUrls.php
Sergey Biryukov d1046dc5f3 Tests: Use the data_ prefix for various data provider methods.
This aims to bring more consistency to the test suite, as the vast majority of data providers already use that prefix.

Includes moving some data providers next to the tests they are used in.

Follow-up to [55464].

See #57841.

git-svn-id: https://develop.svn.wordpress.org/trunk@55562 602fd350-edb4-49c9-b593-d223f7449a82
2023-03-19 12:03:30 +00:00

33 lines
725 B
PHP

<?php
/**
* @group formatting
*
* @covers ::sanitize_trackback_urls
*/
class Tests_Formatting_SanitizeTrackbackUrls extends WP_UnitTestCase {
/**
* @ticket 21624
* @dataProvider data_sanitize_trackback_urls_with_multiple_urls
*/
public function test_sanitize_trackback_urls_with_multiple_urls( $separator ) {
$this->assertSame(
"http://example.com\nhttp://example.org",
sanitize_trackback_urls( "http://example.com{$separator}http://example.org" )
);
}
public function data_sanitize_trackback_urls_with_multiple_urls() {
return array(
array( "\r\n\t " ),
array( "\r" ),
array( "\n" ),
array( "\t" ),
array( ' ' ),
array( ' ' ),
array( "\n " ),
array( "\r\n" ),
);
}
}