Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Missing host to link to! Please provide :host parameter or set default_url_options[:host] (ActionView::Template::Error)

I installed devise and added config.action_mailer.default_url_options = { :host => 'localhost:3000' } to my development.rb file as suggested. When I run cucumber I get an error:

Missing host to link to! Please provide :host parameter or set default_url_options[:host] (ActionView::Template::Error)

does anyone know what this is related to? not too much info on google about this

like image 399
tdelam Avatar asked Sep 09 '11 19:09

tdelam


2 Answers

Cucumber runs your test environment so you need to add the very same line in test.rb.

like image 162
apneadiving Avatar answered Dec 19 '22 05:12

apneadiving


For posterity, in case it has nothing to do with mailers but you still get the Missing host error while running capybara, rspec...

If you are using url helpers in your tests and have included somewhere in your rspec config:

config.include Rails.application.routes.url_helpers

Then, you should also add something along this line to the same config:

Rails.application.routes.default_url_options[:host] = "test.host"
like image 34
Fab V. Avatar answered Dec 19 '22 05:12

Fab V.