From bf24fba3e8bb622a895a7265820a3471af94b2af Mon Sep 17 00:00:00 2001 From: Matthijs Blom <19817960+MatthijsBlom@users.noreply.github.com> Date: Wed, 29 Nov 2023 17:18:14 +0100 Subject: [PATCH] Add test case: non-alphanumeric printable ASCII --- exercises/practice/pangram/test_pangram.zig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/exercises/practice/pangram/test_pangram.zig b/exercises/practice/pangram/test_pangram.zig index f1aac706..02d402a3 100644 --- a/exercises/practice/pangram/test_pangram.zig +++ b/exercises/practice/pangram/test_pangram.zig @@ -42,3 +42,7 @@ test "mixed case and punctuation" { test "a-m and A-M are 26 different characters but not a pangram" { try testing.expect(!pangram.isPangram("abcdefghijklm ABCDEFGHIJKLM")); } + +test "non-alphanumeric printable ASCII" { + try testing.expect(!pangram.isPangram(" !\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~")); +}