mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
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:
@@ -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(
|
||||
'',
|
||||
'.',
|
||||
|
||||
Reference in New Issue
Block a user