# SCENARIO deque.insert error insert more elements than there is room left in the deque
# 	GIVEN A Deque of size 5

var dq[7] = [ 3, 3, 13, 0, 0, 11, 12 ]

# 	WHEN Insert more elements than there is room left in the deque

call deque.insert(dq, [1,2,3,4,5], 0)

# 		THEN Throws exception
# 			REQUIRE THROWS ARRAY_ACCESS_OUT_OF_BOUNDS
