summaryrefslogtreecommitdiff
path: root/tests/Unit/Http/Exceptions/HttpTemporaryRedirectTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Http/Exceptions/HttpTemporaryRedirectTest.php')
-rw-r--r--tests/Unit/Http/Exceptions/HttpTemporaryRedirectTest.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/Unit/Http/Exceptions/HttpTemporaryRedirectTest.php b/tests/Unit/Http/Exceptions/HttpTemporaryRedirectTest.php
new file mode 100644
index 00000000..6096830f
--- /dev/null
+++ b/tests/Unit/Http/Exceptions/HttpTemporaryRedirectTest.php
@@ -0,0 +1,20 @@
+<?php
+
+namespace Engelsystem\Test\Unit\Http;
+
+use Engelsystem\Http\Exceptions\HttpRedirect;
+use Engelsystem\Http\Exceptions\HttpTemporaryRedirect;
+use PHPUnit\Framework\TestCase;
+
+class HttpTemporaryRedirectTest extends TestCase
+{
+ /**
+ * @covers \Engelsystem\Http\Exceptions\HttpTemporaryRedirect::__construct
+ */
+ public function testConstruct()
+ {
+ $exception = new HttpTemporaryRedirect('https://lorem.ipsum/foo/bar');
+ $this->assertInstanceOf(HttpRedirect::class, $exception);
+ $this->assertEquals(302, $exception->getStatusCode());
+ }
+}