I have a Rails 2.3.11 controller that I'm trying to debug. It looks like this:
class AppleController < ...
# ...
def create
# ...
end
end
From the log, I have some parameters p:
p = { ... }
What can I write at the console so that I can get an instance of AppleController that will work exactly like a regular instance with those parameters, and which will let me call .create?
ac = AppleController.new
# What goes here?
ac.create
(Notice that just assigning ac.params = p is not sufficient since there's no @request object, etc.) Thanks!