parent
5feb1a6bff
commit
594edad213
5 changed files with 40 additions and 17 deletions
|
@ -45,3 +45,8 @@ func TestToSnakeCase(t *testing.T) {
|
|||
assert.Equal(t, expected, ToSnakeCase(input))
|
||||
}
|
||||
}
|
||||
|
||||
func TestSplitTrimSpace(t *testing.T) {
|
||||
assert.Equal(t, []string{"a", "b", "c"}, SplitTrimSpace("a\nb\nc", "\n"))
|
||||
assert.Equal(t, []string{"a", "b"}, SplitTrimSpace("\r\na\n\r\nb\n\n", "\n"))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue