Sha256: cd3ba7d500bec5a53d247e53ac9407a02900acbb4692093fb425d30ba228384a
Contents?: true
Size: 868 Bytes
Versions: 255
Compression:
Stored size: 868 Bytes
Contents
var Acronyms = require('./acronym'); describe('Acronyms are produced from', function(){ it('title cased phrases', function() { expect(Acronyms.parse('Portable Network Graphics')).toEqual('PNG'); }); it('other title cased phrases', function(){ expect(Acronyms.parse('Ruby on Rails')).toEqual('ROR'); }); it('inconsistently cased phrases', function(){ expect(Acronyms.parse('HyperText Markup Language')).toEqual('HTML'); }); it('phrases with punctuation', function() { expect(Acronyms.parse('First In, First Out')).toEqual('FIFO'); }); it('other phrases with punctuation', function() { expect(Acronyms.parse('PHP: Hypertext Preprocessor')).toEqual('PHP'); }); it('phrases with punctuation and sentence casing', function() { expect(Acronyms.parse('Complementary metal-oxide semiconductor')).toEqual('CMOS'); }); });
Version data entries
255 entries across 255 versions & 1 rubygems