From d52394ca39a32ee8ec2f698d31e85977bf743ca7 Mon Sep 17 00:00:00 2001 From: Randy Geraads Date: Fri, 22 Nov 2024 08:56:02 +0100 Subject: [PATCH] removed test --- tests/unit/Playground/Post/StatusTest.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/unit/Playground/Post/StatusTest.php b/tests/unit/Playground/Post/StatusTest.php index 6ea81ac0..5d971025 100644 --- a/tests/unit/Playground/Post/StatusTest.php +++ b/tests/unit/Playground/Post/StatusTest.php @@ -16,10 +16,4 @@ public function it_should_expose_its_status(): void self::assertSame('published', Status::PUBLISHED->value); self::assertSame('archived', Status::ARCHIVED->value); } - - /** @test */ - public function it_should_return_null_on_invalid_value(): void - { - self::assertNull(Status::tryFrom('foo')); - } }