I am new to rails and need to write a test for a controller. In my controller I have a variable and want to know witch value it has. Say my controller method looks like this:
class MyProductsController < ApplicationController
[...]
# GET /myproducts/1
# GET /myproducts/1.json
def show
@number = 3
nxtnumber = 5
end
end
Ok, I know how to test the value of @number, but is there any way to test the value of nxtnumber? This is what I really need.
Thanks in advance.
nxtnumberdoesn't appear to be part of the controller's interface so it is none of your test's business. – mu is too short Jun 3 '12 at 20:27