1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

string: add another test for split_nth()

This commit is contained in:
Khairul Azhar Kasmiran 2020-01-26 02:12:36 +08:00 committed by Alexander Medvednikov
parent 15a63b5bcb
commit edc44993d1

View File

@ -123,7 +123,7 @@ fn test_split_nth() {
fn test_split_nth_values() {
line := 'CMD=eprintln(phase=1)'
a0 := line.split_nth('=', 0)
assert a0.len == 3
assert a0[0] == 'CMD'
@ -144,7 +144,12 @@ fn test_split_nth_values() {
assert a3[0] == 'CMD'
assert a3[1] == 'eprintln(phase'
assert a3[2] == '1)'
a4 := line.split_nth('=', 4)
assert a4.len == 3
assert a4[0] == 'CMD'
assert a4[1] == 'eprintln(phase'
assert a4[2] == '1)'
}
fn test_split() {