aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/render_implicit_action_test.rb
blob: 798505b539860d51beaee6cfdbf304cf71001bae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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