I'm using rails 3.0.5, rspec2 with latest capybara.

Routes setup like:

scope "(:locale)", :locale => /de|fr|it|en/ do
  resources :dossiers
end

In application_controller I have this:

def default_url_options(options={})
  options[:locale] = "es"
  options
end

So in my views I can use

link_to 'test', dossier_path(1)

without any problems.

But when I do the same in capybara's visit it tries to use the 1 for the locale and not for the id. It only works when I use

visit dossier_path(nil, 1)

or

visit dossier_path(:id => 1)

But both are ugly and looks like a dirty hack. So why do I need to use this dirty hack and what do I jave to do, so that I can use the path methods just like in the views (so without the dirty hack of having to add nil or explicitly pass :id => ...)? :)

link|improve this question

50% accept rate
The title of your question indicates that this is an answer rather than a question. After reading the content, this impression didn't change much. What are you looking for exactly? – polarblau Mar 22 '11 at 21:16
I'm looking for an answer why I need to use the dirty hack I showed and what I can do, so that I can use method just like in the views (so without the dirty hack of having to add nil or explicitly pass :id => ...). – gucki Mar 23 '11 at 7:20
Sorry, I just saw the title was wrong. Instead of "now" it should have been "not", I just fixed it ;) – gucki Mar 23 '11 at 7:23
1  
it seems capybara is not passing through your application controller, that's why it can't go through your paths properly. what you can do is to make a step helper to fix your routes for capybara – corroded Mar 23 '11 at 7:28
1  
could you please give me an example? it should not only work for dossier_path, but any path method. if you add it as an answer, i can vote for it :) – gucki Mar 23 '11 at 9:01
feedback

3 Answers

Unfortunately the route generation happens outside of Application Controller. And Capybara doesn't do any magic to provide default url options from it to route helpers.

But you can specify default locale inside your routes.rb

scope "(:locale)", :locale => /de|fr|it|en/, :defaults => { :locale => "es" } do
  resources :dossiers
end

And now if you don't pass :locale option to a route helper it will default to "es". Actually, it isn't necessary to keep def default_url_options anymore in your controller.

link|improve this answer
How about defaults which are dependent on the current_user for example? – gucki Aug 18 '11 at 8:02
feedback

I ran into a similar issue. You can set the default_url_options in a before block like this in request specs:

 before :each do
   app.default_url_options = { :locale => :es }
 end
link|improve this answer
feedback

Opposite as shown here under Using Capybara with RSpec the only way I've been able to get it working is writing

visit user_path(:id => myuser.id.to_s)

so for you it should be

visit dossier_path(:id => "1")

Does it work?

link|improve this answer
Sorry, I dont see how this is related to my question concerning default url options not being used? – gucki Jul 20 '11 at 8:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.