aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/render_implicit_action_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/new_base/render_implicit_action_test.rb')
-rw-r--r--actionpack/test/new_base/render_implicit_action_test.rb32
1 files changed, 16 insertions, 16 deletions
diff --git a/actionpack/test/new_base/render_implicit_action_test.rb b/actionpack/test/new_base/render_implicit_action_test.rb
index 3afa444e3e..58f5cec181 100644
--- a/actionpack/test/new_base/render_implicit_action_test.rb
+++ b/actionpack/test/new_base/render_implicit_action_test.rb
@@ -4,25 +4,25 @@ module RenderImplicitAction
class SimpleController < ::ApplicationController
self.view_paths = [ActionView::Template::FixturePath.new(
"render_implicit_action/simple/hello_world.html.erb" => "Hello world!",
- "render_implicit_action/simple/hyphen-ated.html.erb" => "Hello hyphen-ated"
+ "render_implicit_action/simple/hyphen-ated.html.erb" => "Hello hyphen-ated!"
)]
def hello_world() end
end
- # class TestImplicitRender < SimpleRouteCase
- # describe "render a simple action with new explicit call to render"
- #
- # get "/render_implicit_action/simple/hello_world"
- # assert_body "Hello world!"
- # assert_status 200
- # end
- #
- # class TestImplicitWithSpecialCharactersRender < SimpleRouteCase
- # describe "render an action with a missing method and has special characters"
- #
- # get "/render_implicit_action/simple/hyphen-ated"
- # assert_body "Hello hyphen-ated!"
- # assert_status 200
- # end
+ class TestImplicitRender < SimpleRouteCase
+ describe "render a simple action with new explicit call to render"
+
+ get "/render_implicit_action/simple/hello_world"
+ assert_body "Hello world!"
+ assert_status 200
+ end
+
+ class TestImplicitWithSpecialCharactersRender < SimpleRouteCase
+ describe "render an action with a missing method and has special characters"
+
+ get "/render_implicit_action/simple/hyphen-ated"
+ assert_body "Hello hyphen-ated!"
+ assert_status 200
+ end
end \ No newline at end of file