Sha256: 43f7a2aaad7081882ffcfb6c23294950d5dfa92247c32592100ba5f394737049
Contents?: true
Size: 1.62 KB
Versions: 208
Compression:
Stored size: 1.62 KB
Contents
import Pangram from './pangram'; describe('Pangram()', () => { it('empty sentence', () => { const pangram = new Pangram(''); expect(pangram.isPangram()).toBe(false); }); xit('pangram with only lower case', () => { const pangram = new Pangram("the quick brown fox jumps over the lazy dog"); expect(pangram.isPangram()).toBe(true); }); xit("missing character 'x'", () => { const pangram = new Pangram("a quick movement of the enemy will jeopardize five gunboats"); expect(pangram.isPangram()).toBe(false); }); xit("another missing character 'x'", () => { const pangram = new Pangram("the quick brown fish jumps over the lazy dog"); expect(pangram.isPangram()).toBe(false); }); xit("pangram with underscores", () => { const pangram = new Pangram("the_quick_brown_fox_jumps_over_the_lazy_dog"); expect(pangram.isPangram()).toBe(true); }); xit("pangram with numbers", () => { const pangram = new Pangram("the 1 quick brown fox jumps over the 2 lazy dogs"); expect(pangram.isPangram()).toBe(true); }); xit('missing letters replaced by numbers', () => { const pangram = new Pangram("7h3 qu1ck brown fox jumps ov3r 7h3 lazy dog"); expect(pangram.isPangram()).toBe(false); }); xit('pangram with mixed case and punctuation', () => { const pangram = new Pangram("\"Five quacking Zephyrs jolt my wax bed.\""); expect(pangram.isPangram()).toBe(true); }); xit('pangram with non-ascii characters', () => { const pangram = new Pangram("Victor jagt zwölf Boxkämpfer quer über den großen Sylter Deich."); expect(pangram.isPangram()).toBe(true); }); });
Version data entries
208 entries across 208 versions & 1 rubygems