[lang-ref] ( array_size ) ( bash )

@test "array size" {
	# ${#array[@]}
	declare -a array=(A B C D E)

	[ ${#array[@]} -eq 5 ]
}