ran gofmt -s -w *.go
This commit is contained in:
parent
3605ed457b
commit
d73be125f8
@ -30,15 +30,15 @@ import (
|
|||||||
|
|
||||||
func TestToCamel(t *testing.T) {
|
func TestToCamel(t *testing.T) {
|
||||||
cases := [][]string{
|
cases := [][]string{
|
||||||
[]string{"test_case", "TestCase"},
|
{"test_case", "TestCase"},
|
||||||
[]string{"test", "Test"},
|
{"test", "Test"},
|
||||||
[]string{"TestCase", "TestCase"},
|
{"TestCase", "TestCase"},
|
||||||
[]string{" test case ", "TestCase"},
|
{" test case ", "TestCase"},
|
||||||
[]string{"", ""},
|
{"", ""},
|
||||||
[]string{"many_many_words", "ManyManyWords"},
|
{"many_many_words", "ManyManyWords"},
|
||||||
[]string{"AnyKind of_string", "AnyKindOfString"},
|
{"AnyKind of_string", "AnyKindOfString"},
|
||||||
[]string{"odd-fix", "OddFix"},
|
{"odd-fix", "OddFix"},
|
||||||
[]string{"numbers2And55with000", "Numbers2And55With000"},
|
{"numbers2And55with000", "Numbers2And55With000"},
|
||||||
}
|
}
|
||||||
for _, i := range cases {
|
for _, i := range cases {
|
||||||
in := i[0]
|
in := i[0]
|
||||||
@ -52,10 +52,10 @@ func TestToCamel(t *testing.T) {
|
|||||||
|
|
||||||
func TestToLowerCamel(t *testing.T) {
|
func TestToLowerCamel(t *testing.T) {
|
||||||
cases := [][]string{
|
cases := [][]string{
|
||||||
[]string{"foo-bar", "fooBar"},
|
{"foo-bar", "fooBar"},
|
||||||
[]string{"TestCase", "testCase"},
|
{"TestCase", "testCase"},
|
||||||
[]string{"", ""},
|
{"", ""},
|
||||||
[]string{"AnyKind of_string", "anyKindOfString"},
|
{"AnyKind of_string", "anyKindOfString"},
|
||||||
}
|
}
|
||||||
for _, i := range cases {
|
for _, i := range cases {
|
||||||
in := i[0]
|
in := i[0]
|
||||||
|
@ -31,23 +31,23 @@ import (
|
|||||||
|
|
||||||
func TestToSnake(t *testing.T) {
|
func TestToSnake(t *testing.T) {
|
||||||
cases := [][]string{
|
cases := [][]string{
|
||||||
[]string{"testCase", "test_case"},
|
{"testCase", "test_case"},
|
||||||
[]string{"TestCase", "test_case"},
|
{"TestCase", "test_case"},
|
||||||
[]string{"Test Case", "test_case"},
|
{"Test Case", "test_case"},
|
||||||
[]string{" Test Case", "test_case"},
|
{" Test Case", "test_case"},
|
||||||
[]string{"Test Case ", "test_case"},
|
{"Test Case ", "test_case"},
|
||||||
[]string{" Test Case ", "test_case"},
|
{" Test Case ", "test_case"},
|
||||||
[]string{"test", "test"},
|
{"test", "test"},
|
||||||
[]string{"test_case", "test_case"},
|
{"test_case", "test_case"},
|
||||||
[]string{"Test", "test"},
|
{"Test", "test"},
|
||||||
[]string{"", ""},
|
{"", ""},
|
||||||
[]string{"ManyManyWords", "many_many_words"},
|
{"ManyManyWords", "many_many_words"},
|
||||||
[]string{"manyManyWords", "many_many_words"},
|
{"manyManyWords", "many_many_words"},
|
||||||
[]string{"AnyKind of_string", "any_kind_of_string"},
|
{"AnyKind of_string", "any_kind_of_string"},
|
||||||
[]string{"numbers2and55with000", "numbers_2_and_55_with_000"},
|
{"numbers2and55with000", "numbers_2_and_55_with_000"},
|
||||||
[]string{"JSONData", "json_data"},
|
{"JSONData", "json_data"},
|
||||||
[]string{"userID", "user_id"},
|
{"userID", "user_id"},
|
||||||
[]string{"AAAbbb", "aa_abbb"},
|
{"AAAbbb", "aa_abbb"},
|
||||||
}
|
}
|
||||||
for _, i := range cases {
|
for _, i := range cases {
|
||||||
in := i[0]
|
in := i[0]
|
||||||
@ -61,24 +61,24 @@ func TestToSnake(t *testing.T) {
|
|||||||
|
|
||||||
func TestToDelimited(t *testing.T) {
|
func TestToDelimited(t *testing.T) {
|
||||||
cases := [][]string{
|
cases := [][]string{
|
||||||
[]string{"testCase", "test@case"},
|
{"testCase", "test@case"},
|
||||||
[]string{"TestCase", "test@case"},
|
{"TestCase", "test@case"},
|
||||||
[]string{"Test Case", "test@case"},
|
{"Test Case", "test@case"},
|
||||||
[]string{" Test Case", "test@case"},
|
{" Test Case", "test@case"},
|
||||||
[]string{"Test Case ", "test@case"},
|
{"Test Case ", "test@case"},
|
||||||
[]string{" Test Case ", "test@case"},
|
{" Test Case ", "test@case"},
|
||||||
[]string{"test", "test"},
|
{"test", "test"},
|
||||||
[]string{"test_case", "test@case"},
|
{"test_case", "test@case"},
|
||||||
[]string{"Test", "test"},
|
{"Test", "test"},
|
||||||
[]string{"", ""},
|
{"", ""},
|
||||||
[]string{"ManyManyWords", "many@many@words"},
|
{"ManyManyWords", "many@many@words"},
|
||||||
[]string{"manyManyWords", "many@many@words"},
|
{"manyManyWords", "many@many@words"},
|
||||||
[]string{"AnyKind of_string", "any@kind@of@string"},
|
{"AnyKind of_string", "any@kind@of@string"},
|
||||||
[]string{"numbers2and55with000", "numbers@2@and@55@with@000"},
|
{"numbers2and55with000", "numbers@2@and@55@with@000"},
|
||||||
[]string{"JSONData", "json@data"},
|
{"JSONData", "json@data"},
|
||||||
[]string{"userID", "user@id"},
|
{"userID", "user@id"},
|
||||||
[]string{"AAAbbb", "aa@abbb"},
|
{"AAAbbb", "aa@abbb"},
|
||||||
[]string{"test-case", "test@case"},
|
{"test-case", "test@case"},
|
||||||
}
|
}
|
||||||
for _, i := range cases {
|
for _, i := range cases {
|
||||||
in := i[0]
|
in := i[0]
|
||||||
@ -92,7 +92,7 @@ func TestToDelimited(t *testing.T) {
|
|||||||
|
|
||||||
func TestToScreamingSnake(t *testing.T) {
|
func TestToScreamingSnake(t *testing.T) {
|
||||||
cases := [][]string{
|
cases := [][]string{
|
||||||
[]string{"testCase", "TEST_CASE"},
|
{"testCase", "TEST_CASE"},
|
||||||
}
|
}
|
||||||
for _, i := range cases {
|
for _, i := range cases {
|
||||||
in := i[0]
|
in := i[0]
|
||||||
@ -106,7 +106,7 @@ func TestToScreamingSnake(t *testing.T) {
|
|||||||
|
|
||||||
func TestToKebab(t *testing.T) {
|
func TestToKebab(t *testing.T) {
|
||||||
cases := [][]string{
|
cases := [][]string{
|
||||||
[]string{"testCase", "test-case"},
|
{"testCase", "test-case"},
|
||||||
}
|
}
|
||||||
for _, i := range cases {
|
for _, i := range cases {
|
||||||
in := i[0]
|
in := i[0]
|
||||||
@ -120,7 +120,7 @@ func TestToKebab(t *testing.T) {
|
|||||||
|
|
||||||
func TestToScreamingKebab(t *testing.T) {
|
func TestToScreamingKebab(t *testing.T) {
|
||||||
cases := [][]string{
|
cases := [][]string{
|
||||||
[]string{"testCase", "TEST-CASE"},
|
{"testCase", "TEST-CASE"},
|
||||||
}
|
}
|
||||||
for _, i := range cases {
|
for _, i := range cases {
|
||||||
in := i[0]
|
in := i[0]
|
||||||
@ -134,7 +134,7 @@ func TestToScreamingKebab(t *testing.T) {
|
|||||||
|
|
||||||
func TestToScreamingDelimited(t *testing.T) {
|
func TestToScreamingDelimited(t *testing.T) {
|
||||||
cases := [][]string{
|
cases := [][]string{
|
||||||
[]string{"testCase", "TEST.CASE"},
|
{"testCase", "TEST.CASE"},
|
||||||
}
|
}
|
||||||
for _, i := range cases {
|
for _, i := range cases {
|
||||||
in := i[0]
|
in := i[0]
|
||||||
|
Loading…
Reference in New Issue
Block a user