From 5c75059d36293b8e9f5076300a43e6fdbcb8bfc4 Mon Sep 17 00:00:00 2001 From: Vankog Date: Fri, 13 Oct 2017 15:47:49 +0200 Subject: [PATCH] pangram: add a case with a perfect pangram for better TDD progression exercism/problem-specifications#952 --- exercises/pangram/canonical-data.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/exercises/pangram/canonical-data.json b/exercises/pangram/canonical-data.json index a2a69e05b6..95d01089c7 100644 --- a/exercises/pangram/canonical-data.json +++ b/exercises/pangram/canonical-data.json @@ -3,7 +3,7 @@ "comments": [ "A pangram is a sentence using every letter of the alphabet at least once." ], - "version": "1.1.0", + "version": "1.2.0", "cases": [ { "description": "Check if the given string is an pangram", @@ -17,6 +17,12 @@ "input": "", "expected": false }, + { + "description": "recognizes a perfect lower case pangram", + "property": "isPangram", + "input": "abcdefghijklmnopqrstuvwxyz", + "expected": true + }, { "description": "pangram with only lower case", "property": "isPangram",