From ef8ab8fc15bb1c26b6ef59c4c65cc73397b03e67 Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Sun, 15 Sep 2024 23:13:51 +0200 Subject: [PATCH] Add test for 7-digit EG postcodes --- tests/Formatter/EGFormatterTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Formatter/EGFormatterTest.php b/tests/Formatter/EGFormatterTest.php index bef7002..8fdb4ce 100644 --- a/tests/Formatter/EGFormatterTest.php +++ b/tests/Formatter/EGFormatterTest.php @@ -35,6 +35,8 @@ public function providerFormat() : array ['1234', null], ['12345', '12345'], ['123456', null], + ['1234567', '1234567'], + ['12345678', null], ['A', null], ['AB', null],