mirror of
https://github.com/golang/go
synced 2024-11-22 01:34:41 -07:00
bytes: added test case for explode with blank string.
Tests for the equivalent of the strings.explode("") panic bug (issue 980). R=golang-dev, r CC=golang-dev https://golang.org/cl/1850052
This commit is contained in:
parent
2db4c3d779
commit
99aab8bacb
@ -212,6 +212,7 @@ type ExplodeTest struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var explodetests = []ExplodeTest{
|
var explodetests = []ExplodeTest{
|
||||||
|
ExplodeTest{"", -1, []string{}},
|
||||||
ExplodeTest{abcd, -1, []string{"a", "b", "c", "d"}},
|
ExplodeTest{abcd, -1, []string{"a", "b", "c", "d"}},
|
||||||
ExplodeTest{faces, -1, []string{"☺", "☻", "☹"}},
|
ExplodeTest{faces, -1, []string{"☺", "☻", "☹"}},
|
||||||
ExplodeTest{abcd, 2, []string{"a", "bcd"}},
|
ExplodeTest{abcd, 2, []string{"a", "bcd"}},
|
||||||
|
Loading…
Reference in New Issue
Block a user