Displaying 1 result from an estimated 1 matches for "20bar".
Did you mean:
0bar
2011 Apr 07
3
[Rails 3] No route matches error using RSpec even though route DOES match
...be_success
end
end
end
Instead of getting a success (which I should given that the action
itself is essentially blank - it exists, just nothing inside it, no
before_filters or anything, and a view for it exists), I get:
ActionController::RoutingError: No route matches {:name => "Foo
%20Bar", :controller => "search", :action => "users"}.
Even more insidious, my output from rake routes:
GET /users/:name(.:format)
{:controller=>"search", :action=>"users"}
This could be understandable if I could duplicate the problem for
other...