Build/Test Tools: Remove unnecessary checks and skips that should instead cause failures if they ever fail.

See #40533


git-svn-id: https://develop.svn.wordpress.org/trunk@40533 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn
2017-04-22 22:54:15 +00:00
parent 669bd1bbc3
commit c0910cd442
2 changed files with 0 additions and 21 deletions

View File

@@ -61,9 +61,6 @@ class Tests_Functions extends WP_UnitTestCase {
}
function test_path_is_absolute() {
if ( !is_callable('path_is_absolute') )
$this->markTestSkipped();
$absolute_paths = array(
'/',
'/foo/',
@@ -81,9 +78,6 @@ class Tests_Functions extends WP_UnitTestCase {
}
function test_path_is_not_absolute() {
if ( !is_callable('path_is_absolute') )
$this->markTestSkipped();
$relative_paths = array(
'',
'.',