From 0f93a72879ac5e6afbf1f5da170b4cbdf24b46db Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Sun, 27 Jul 2014 17:18:19 +0000 Subject: [PATCH] Remove unit test for `is_https_url()`, see [29309]. see #28487. git-svn-id: https://develop.svn.wordpress.org/trunk@29310 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/functions/isHttpsUrl.php | 22 -------------------- 1 file changed, 22 deletions(-) delete mode 100644 tests/phpunit/tests/functions/isHttpsUrl.php diff --git a/tests/phpunit/tests/functions/isHttpsUrl.php b/tests/phpunit/tests/functions/isHttpsUrl.php deleted file mode 100644 index 22d9d9785c..0000000000 --- a/tests/phpunit/tests/functions/isHttpsUrl.php +++ /dev/null @@ -1,22 +0,0 @@ -assertTrue( is_https_url( 'https://example.com/' ) ); - $this->assertTrue( is_https_url( 'https://localhost/' ) ); - - $this->assertFalse( is_https_url( 'http://example.com' ) ); - $this->assertFalse( is_https_url( 'Hello World!' ) ); - $this->assertFalse( is_https_url( 'httpsinvalid' ) ); - - } - -}