From 94e68e7ad32b2e167c6ebc1d0b642f706761136d Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Wed, 17 Apr 2013 11:20:12 -0700 Subject: [PATCH] adding a test for root path in the app --- railties/test/application/routing_test.rb | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/railties/test/application/routing_test.rb b/railties/test/application/routing_test.rb index 22de640236..25372d0a50 100644 --- a/railties/test/application/routing_test.rb +++ b/railties/test/application/routing_test.rb @@ -277,6 +277,30 @@ def baz end end + def test_root_path + app('development') + + controller :foo, <<-RUBY + class FooController < ApplicationController + def index + render :text => "foo" + end + end + RUBY + + app_file 'config/routes.rb', <<-RUBY + AppTemplate::Application.routes.draw do + get 'foo', :to => 'foo#index' + root :to => 'foo#index' + end + RUBY + + remove_file 'public/index.html' + + get '/' + assert_equal 'foo', last_response.body + end + test 'routes are added and removed when reloading' do app('development') -- GitLab