From dc928a8fc706ece6188975ff06080c1a92fdfa70 Mon Sep 17 00:00:00 2001 From: Tammo Behrends Date: Sun, 6 Nov 2016 13:27:48 +0100 Subject: [PATCH] pangram: Add case-insensitive test The new test cases verifiys that the characters are counted case-insensitive. Resolves: #266 --- exercises/pangram/canonical-data.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/exercises/pangram/canonical-data.json b/exercises/pangram/canonical-data.json index 1dab499d05..800123e283 100644 --- a/exercises/pangram/canonical-data.json +++ b/exercises/pangram/canonical-data.json @@ -39,6 +39,11 @@ "description": "pangram with mixed case and punctuation", "input": "\"Five quacking Zephyrs jolt my wax bed.\"", "expected": true + }, + { + "description": "upper and lower case versions of the same character should not be counted separately", + "input": "the quick brown fox jumped over the lazy FOX", + "expected": false } ] }