Slapped some shit together

This commit is contained in:
Josh Sherman 2016-02-13 17:38:35 -05:00
parent aeb8615383
commit 05ed8f0e5a
3 changed files with 103 additions and 0 deletions

26
tests/RedirectTest.php Normal file
View file

@ -0,0 +1,26 @@
<?php
require_once '../src/Redirect.php';
class RedirectTest extends PHPUnit_Framework_TestCase
{
public function testPermanentRedirectWithProtocol()
{
}
public function testTemporaryRedirectWithProtocol()
{
}
public function testPermanentRedirectWithoutProtocol()
{
}
public function testTemporaryRedirectWithoutProtocol()
{
}
}