Hi,
How do I override the value of a controller variable in a controller
spec. For ex, if I have an action with an array, I want to have examples
with different variables in the array
def testing
my_array = [1,2,4]
end
How do I test this with diff vals for my array?
Thanks