node/deps/npm/node_modules/normalize-package-data/test/mixedcase-names.js
Forrest L Norvell c1afa53648 deps: upgrade npm to 2.11.0
PR-URL: https://github.com/iojs/io.js/pull/1829
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2015-05-30 08:15:11 -04:00

33 lines
768 B
JavaScript

var test = require('tap').test
var normalize = require('../')
var fixer = normalize.fixer
test('mixedcase', function (t) {
t.doesNotThrow(function () {
fixer.fixNameField({name: 'foo'}, true)
})
t.doesNotThrow(function () {
fixer.fixNameField({name: 'foo'}, false)
})
t.doesNotThrow(function () {
fixer.fixNameField({name: 'foo'})
})
t.throws(function () {
fixer.fixNameField({name: 'Foo'}, true)
}, new Error('Invalid name: "Foo"'), 'should throw an error')
t.throws(function () {
fixer.fixNameField({name: 'Foo'}, {strict: true})
}, new Error('Invalid name: "Foo"'), 'should throw an error')
t.doesNotThrow(function () {
fixer.fixNameField({name: 'Foo'}, {strict: true, allowLegacyCase: true})
})
t.end()
})