aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/new_base/render_template_test.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-10-03 23:18:32 -0500
committerJoshua Peek <josh@joshpeek.com>2009-10-03 23:18:32 -0500
commit61411f2aeb29edba2d8cd2008020044799ea3d61 (patch)
treed2e6c4b5a30e27a9b8739ed6a050c30e7be70d20 /actionpack/test/controller/new_base/render_template_test.rb
parent8287a112c92aff73d45536f0942d9dc7ba107bd7 (diff)
downloadrails-61411f2aeb29edba2d8cd2008020044799ea3d61.tar.gz
rails-61411f2aeb29edba2d8cd2008020044799ea3d61.tar.bz2
rails-61411f2aeb29edba2d8cd2008020044799ea3d61.zip
Redraw default routes on all internal integration tests. We don't need SimpleRouteCase anymore
Diffstat (limited to 'actionpack/test/controller/new_base/render_template_test.rb')
-rw-r--r--actionpack/test/controller/new_base/render_template_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/test/controller/new_base/render_template_test.rb b/actionpack/test/controller/new_base/render_template_test.rb
index 3b24c2d75a..c81b951c0d 100644
--- a/actionpack/test/controller/new_base/render_template_test.rb
+++ b/actionpack/test/controller/new_base/render_template_test.rb
@@ -39,7 +39,7 @@ module RenderTemplate
end
end
- class TestWithoutLayout < SimpleRouteCase
+ class TestWithoutLayout < Rack::TestCase
testing RenderTemplate::WithoutLayoutController
test "rendering a normal template with full path without layout" do
@@ -107,7 +107,7 @@ module RenderTemplate
end
end
- class TestWithLayout < SimpleRouteCase
+ class TestWithLayout < Rack::TestCase
describe "Rendering with :template using implicit or explicit layout"
test "rendering with implicit layout" do
@@ -158,7 +158,7 @@ module RenderTemplate
end
end
- class TestTemplateRenderWithForwardSlash < SimpleRouteCase
+ class TestTemplateRenderWithForwardSlash < Rack::TestCase
test "rendering a normal template with full path starting with a leading slash" do
get "/render_template/compatibility/without_layout/with_forward_slash"