license-o-matic
Version:
Generate SPDX license with ease
32 lines (26 loc) • 940 B
JavaScript
const licenseOMatic = require('./')
test('should be defined', () => {
expect(licenseOMatic).toBeDefined()
expect(typeof licenseOMatic).toBe('object')
})
test('should get license identifier', () => {
const identifiers = licenseOMatic.getIdentifiers()
expect(Array.isArray(identifiers)).toBeTruthy()
})
test('should create MIT license', () => {
const mit = licenseOMatic.getLicense('mit')
const name = 'foooper'
const licenseStr = mit({copyrightHolder: name})
expect(licenseStr.indexOf(name) !== -1).toBeTruthy()
})
test('should throw if license does not exist', () => {
expect(() => licenseOMatic.getLicense('fooopper')).toThrow()
})
test('can generate all licenses', () => {
const identifiers = licenseOMatic.getIdentifiers()
const allLicenses = identifiers.every(id => {
const license = licenseOMatic.getLicense(id)
return license({copyrightHolder: 'foooper'})
})
expect(allLicenses).toBeTruthy()
})