Sha256: 270c63334480df796432b05911400610ec6ac5b825cb0da077bb6e0492caf505
Contents?: true
Size: 1.6 KB
Versions: 141
Compression:
Stored size: 1.6 KB
Contents
var Isogram = require('./isogram'); describe('Isogram Test Suite', function () { it('duplicates', function () { var word = new Isogram('duplicates'); expect(word.isIsogram()).toEqual(true); }); xit('eleven', function () { var word = new Isogram('eleven'); expect(word.isIsogram()).toEqual(false); }); xit('subdermatoglyphic', function () { var word = new Isogram('subdermatoglyphic'); expect(word.isIsogram()).toEqual(true); }); xit('Alphabet', function () { var word = new Isogram('Alphabet'); expect(word.isIsogram()).toEqual(false); }); xit('thumbscrew-japingly', function () { var word = new Isogram('thumbscrew-japingly'); expect(word.isIsogram()).toEqual(true); }); xit('Hjelmqvist-Gryb-Zock-Pfund-Wax', function () { var word = new Isogram('Hjelmqvist-Gryb-Zock-Pfund-Wax'); expect(word.isIsogram()).toEqual(true); }); xit('Heizölrückstoßabdämpfung', function () { var word = new Isogram('Heizölrückstoßabdämpfung'); expect(word.isIsogram()).toEqual(true); }); xit('the quick brown fox', function () { var word = new Isogram('the quick brown fox'); expect(word.isIsogram()).toEqual(false); }); xit('Emily Jung Schwartzkopf', function () { var word = new Isogram('Emily Jung Schwartzkopf'); expect(word.isIsogram()).toEqual(true); }); xit('éléphant', function () { var word = new Isogram('éléphant'); expect(word.isIsogram()).toEqual(false); }); xit('Àcrobàt', function () { var word = new Isogram('Àcrobàt'); expect(word.isIsogram()).toEqual(false); }); });
Version data entries
141 entries across 141 versions & 1 rubygems