Skip to content

Commit 31d3f78

Browse files
committed
Add a test case from golang.org/x/text/cases
1 parent 70e411d commit 31d3f78

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

textcase_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ func TestTextCases(t *testing.T) {
2525
{in: "a___b", camel: "aB", snake: "a_b"},
2626
{in: "ax___by", camel: "axBy", snake: "ax_by"},
2727
{in: "Háčky, čárky. Příliš žluťoučký kůň úpěl ďábelské ódy.", camel: "háčkyČárkyPřílišŽluťoučkýKůňÚpělĎábelskéÓdy", snake: "háčky_čárky_příliš_žluťoučký_kůň_úpěl_ďábelské_ódy"},
28+
{in: "here comes O'Brian", camel: "hereComesOBrian", snake: "here_comes_o_brian"},
2829
}
2930

3031
for _, test := range tt {

0 commit comments

Comments
 (0)