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