Fix routes to re-enable Selenium tests

This commit is contained in:
Eric Allen 2008-10-02 20:25:58 -04:00
parent eae4d0f6f1
commit 0a39e1ea7e

View file

@ -55,6 +55,10 @@ ActionController::Routing::Routes.draw do |map|
map.feeds 'feeds', :controller => 'feedlist', :action => 'index'
map.feeds 'feeds.m', :controller => 'feedlist', :action => 'index', :format => 'm'
if Rails.env == 'test'
map.connect '/selenium_helper/login', :controller => 'selenium_helper', :action => 'login'
end
map.preferences 'preferences', :controller => 'preferences', :action => 'index'
map.integrations 'integrations', :controller => 'integrations', :action => 'index'