blob: a62b69938db08e4bce8c6efc432e0962dc92b888 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
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()
})
|