diff --git a/csv/parsestrings_test.go b/csv/parsestrings_test.go index 20296fe..c3d0860 100644 --- a/csv/parsestrings_test.go +++ b/csv/parsestrings_test.go @@ -218,6 +218,18 @@ var testRows = map[string][]string{ ``, ``, }, + `"one","two,","three"`: { + ",", // separator + "one", + "two,", + "three", + }, + `"one";"two;";"three"`: { + ";", // separator + "one", + "two;", + "three", + }, } func TestParseStrings(t *testing.T) {