Sha256: 87090b5951488baf3bd245e348092f6e701c8e45141e141b1b30b0d88da373f7
Contents?: true
Size: 1.72 KB
Versions: 13
Compression:
Stored size: 1.72 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": "pangram with non ascii characters", "input": "Victor jagt zwölf Boxkämpfer quer über den großen Sylter Deich.", "expected": true }, { "description": "Panagram in alphabet other than ASCII", "input": "Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства.", "expected": false } ] }
Version data entries
13 entries across 13 versions & 1 rubygems