Hi, I just created a scaffolding controller and tried to run the tests
and see it in the web browser. The problem is that I don't think the
routes were setup properly or at all. I get this error when I run the
tests:
ActionController::RoutingError: No route matches
{:task=>{"created_at"=>2010-10-12 03:06:22 UTC, "id"=>980190962,
"name"=>nil, "updated_at"=>2010-10-12 03:06:22 UTC,
"value"=>nil}, :controller=>"tasks", :action=>"create"}
test/functional/tasks_controller_test.rb:21:in `block (2 levels) in
<class:TasksControllerTest>'
test/functional/tasks_controller_test.rb:20:in `block in
<class:TasksControllerTest>'
This is a fresh install of a rails application, so I didn't do
anything to mess it up I'm assuming rails is suppose to infer these
urls/routes through convention? Why isn't it doing that?
default routes are commented out by default in rails 3 as a security
issue. So you can't reach any action on your controllers if you just
know or guess the name of it.
/:controller(/:action(/:id))(.:format)
You can comment it in again if you want to. It is at the bottom of
routes.rb.