From 61ba79388b59a5ba9aff3a6ee5ff8484eb660c93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sun, 28 Jan 2024 18:52:34 +0100 Subject: [PATCH] fix tests for PascalCase --- tests/Pest/OptionsTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Pest/OptionsTest.php b/tests/Pest/OptionsTest.php index 6974ca4..dda6086 100644 --- a/tests/Pest/OptionsTest.php +++ b/tests/Pest/OptionsTest.php @@ -37,6 +37,10 @@ it('returns default HTML options from backed enums with snake case') ->toBe('\n'); it('returns default HTML options from pure enums with pascal case') + ->expect(PascalCaseEnum::stringOptions()) + ->toBe('\n'); + +it('returns default HTML options from backed enums with pascal case') ->expect(BackedPascalCaseEnum::stringOptions()) ->toBe('\n');