blob: 61bbb5c55079992316853ddaf0e7a88d622a5840 [file] [log] [blame]
class SliceTest extends GroovyTestCase {
void testListSlice() {
def list = [1, 2, 3, 4]
list[1,2] = 5
assert list == [1, 5, 4]
list[0,1] = [5, 6, 7, 8, 9]
assert list == [5, 6, 7, 8, 9, 4]
}
}