Sha256: b3c89390863826fc8fb1717bcedca5cdce9842c6bffb9248bed148422bbac12f
Contents?: true
Size: 669 Bytes
Versions: 255
Compression:
Stored size: 669 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
255 entries across 255 versions & 1 rubygems