Files
lodash/test/camelCase.test.js
2019-08-24 09:41:50 -07:00

29 lines
1.1 KiB
JavaScript

import assert from 'assert';
import lodashStable from 'lodash';
import camelCase from '../camelCase.js';
describe('camelCase', function() {
it('should work with numbers', function() {
assert.strictEqual(camelCase('12 feet'), '12Feet');
assert.strictEqual(camelCase('enable 6h format'), 'enable6HFormat');
assert.strictEqual(camelCase('enable 24H format'), 'enable24HFormat');
assert.strictEqual(camelCase('too legit 2 quit'), 'tooLegit2Quit');
assert.strictEqual(camelCase('walk 500 miles'), 'walk500Miles');
assert.strictEqual(camelCase('xhr2 request'), 'xhr2Request');
});
it('should handle acronyms', function() {
lodashStable.each(['safe HTML', 'safeHTML'], function(string) {
assert.strictEqual(camelCase(string), 'safeHtml');
});
lodashStable.each(['escape HTML entities', 'escapeHTMLEntities'], function(string) {
assert.strictEqual(camelCase(string), 'escapeHtmlEntities');
});
lodashStable.each(['XMLHttpRequest', 'XmlHTTPRequest'], function(string) {
assert.strictEqual(camelCase(string), 'xmlHttpRequest');
});
});
});