]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - tests/Url/GetUrlSchemeTest.php
namespacing: move HTTP utilities along \Shaarli\Http\ classes
[github/shaarli/Shaarli.git] / tests / Url / GetUrlSchemeTest.php
diff --git a/tests/Url/GetUrlSchemeTest.php b/tests/Url/GetUrlSchemeTest.php
deleted file mode 100644 (file)
index 18b932d..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-<?php
-/**
- * Unitary tests for get_url_scheme()
- */
-
-require_once 'application/Url.php';
-
-class GetUrlSchemeTest extends PHPUnit_Framework_TestCase
-{
-    /**
-     * Get empty scheme string for empty Url
-     */
-    public function testGetUrlSchemeEmpty()
-    {
-        $this->assertEquals('', get_url_scheme(''));
-    }
-
-    /**
-     * Get normal scheme of Url
-     */
-    public function testGetUrlScheme()
-    {
-        $this->assertEquals('http', get_url_scheme('http://domain.tld:3000'));
-        $this->assertEquals('https', get_url_scheme('https://domain.tld:3000'));
-        $this->assertEquals('http', get_url_scheme('domain.tld'));
-        $this->assertEquals('ssh', get_url_scheme('ssh://domain.tld'));
-        $this->assertEquals('ftp', get_url_scheme('ftp://domain.tld'));
-        $this->assertEquals('git', get_url_scheme('git://domain.tld/push?pull=clone#checkout'));
-    }
-}