Sha256: dcfe7c8046f1715d25db1f1611b83c819cc5fe6cd762a0891cf954130d6ef53d
Contents?: true
Size: 1.46 KB
Versions: 95
Compression:
Stored size: 1.46 KB
Contents
{ "cases": [ { "description": "sentence empty", "input": "", "expected": false }, { "description": "pangram with only lower case", "input": "the quick brown fox jumps over the lazy dog", "expected": true }, { "description": "missing character 'x'", "input": "a quick movement of the enemy will jeopardize five gunboats", "expected": false }, { "description": "another missing character 'x'", "input": "the quick brown fish jumps over the lazy dog", "expected": false }, { "description": "pangram with underscores", "input": "the_quick_brown_fox_jumps_over_the_lazy_dog", "expected": true }, { "description": "pangram with numbers", "input": "the 1 quick brown fox jumps over the 2 lazy dogs", "expected": true }, { "description": "missing letters replaced by numbers", "input": "7h3 qu1ck brown fox jumps ov3r 7h3 lazy dog", "expected": false }, { "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 } ] }
Version data entries
95 entries across 95 versions & 1 rubygems