rails--rails/actionpack/test/controller/new_base/render_implicit_action_test.rb

29 lines
831 B
Ruby
Raw Normal View History

2009-09-19 17:10:41 +00:00
require 'abstract_unit'
2009-03-19 20:35:39 +00:00
2009-04-28 01:21:26 +00:00
module RenderImplicitAction
class SimpleController < ::ApplicationController
self.view_paths = [ActionView::FixtureResolver.new(
2009-04-28 01:21:26 +00:00
"render_implicit_action/simple/hello_world.html.erb" => "Hello world!",
"render_implicit_action/simple/hyphen-ated.html.erb" => "Hello hyphen-ated!"
2009-04-28 01:21:26 +00:00
)]
def hello_world() end
2009-03-19 20:35:39 +00:00
end
class RenderImplicitActionTest < Rack::TestCase
test "render a simple action with new explicit call to render" do
get "/render_implicit_action/simple/hello_world"
assert_body "Hello world!"
assert_status 200
end
test "render an action with a missing method and has special characters" do
get "/render_implicit_action/simple/hyphen-ated"
assert_body "Hello hyphen-ated!"
assert_status 200
end
end
end