remove test for SplitByMultiLine

This commit is contained in:
chzyer 2016-03-31 00:19:18 +08:00
parent e5e328dcc7
commit 19657124c7
1 changed files with 0 additions and 14 deletions

View File

@ -1,15 +1 @@
package readline package readline
import (
"reflect"
"testing"
)
func TestSplitByMultiLine(t *testing.T) {
rs := []rune("hello!bye!!!!")
expected := []string{"hell", "o!", "bye!", "!!", "!"}
ret := SplitByMultiLine(0, 6, 4, rs)
if !reflect.DeepEqual(ret, expected) {
t.Fatal(ret, expected)
}
}