Sha256: b6cf43833b42262f994a9935aba1323d77b6a6c682d8ddab5ac90817718b1702
Contents?: true
Size: 682 Bytes
Versions: 141
Compression:
Stored size: 682 Bytes
Contents
var score = require('./scrabble-score'); describe('Scrabble', function () { it('scores an empty word as zero', function () { expect(score('')).toEqual(0); }); xit('scores a null as zero', function () { expect(score(null)).toEqual(0); }); xit('scores a very short word', function () { expect(score('a')).toEqual(1); }); xit('scores the word by the number of letters', function () { expect(score('street')).toEqual(6); }); xit('scores more complicated words with more', function () { expect(score('quirky')).toEqual(22); }); xit('scores case insensitive words', function () { expect(score('OXYPHENBUTAZONE')).toEqual(41); }); });
Version data entries
141 entries across 141 versions & 1 rubygems