2018-06-09 00:44:45 +00:00
|
|
|
let snakeCase = require('./snakeCase')
|
2017-08-25 19:16:42 +00:00
|
|
|
|
|
|
|
describe('snakeCase', function() {
|
|
|
|
it('works with simple lowercased phrases', function() {
|
|
|
|
expect(snakeCase('hello world')).toEqual('hello_world');
|
|
|
|
});
|
|
|
|
xit('works with Caps and punctuation', function() {
|
|
|
|
expect(snakeCase('Hello, World???')).toEqual('hello_world');
|
|
|
|
});
|
|
|
|
xit('works with longer phrases', function() {
|
|
|
|
expect(snakeCase('This is the song that never ends....')).toEqual('this_is_the_song_that_never_ends');
|
|
|
|
});
|
|
|
|
xit('works with camel case', function() {
|
|
|
|
expect(snakeCase('snakeCase')).toEqual('snake_case');
|
|
|
|
});
|
|
|
|
xit('works with kebab case', function() {
|
|
|
|
expect(snakeCase('snake-case')).toEqual('snake_case');
|
|
|
|
});
|
|
|
|
xit('works with WTF case', function() {
|
|
|
|
expect(snakeCase('SnAkE..CaSe..Is..AwEsOmE')).toEqual('snake_case_is_awesome');
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|