string: add another test for split_nth()

pull/3564/head
Khairul Azhar Kasmiran 2020-01-26 02:12:36 +08:00 committed by Alexander Medvednikov
parent 15a63b5bcb
commit edc44993d1
1 changed files with 7 additions and 2 deletions

View File

@ -145,6 +145,11 @@ fn test_split_nth_values() {
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() {