1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/new_base/render_implicit_action_test.rb
2009-05-01 17:31:02 -07:00

28 lines
No EOL
938 B
Ruby

require File.join(File.expand_path(File.dirname(__FILE__)), "test_helper")
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!"
)]
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
end