mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
16 lines
No EOL
345 B
Ruby
16 lines
No EOL
345 B
Ruby
require File.join(File.expand_path(File.dirname(__FILE__)), "test_helper")
|
|
|
|
module HappyPath
|
|
|
|
class RenderImplicitActionController < ActionController::Base2
|
|
# No actions yet, they are implicit
|
|
end
|
|
|
|
class TestRendersActionImplicitly < SimpleRouteCase
|
|
|
|
test "renders action implicitly" do
|
|
assert true
|
|
end
|
|
|
|
end
|
|
end |