webrat/spec/integration/merb/app/controllers/testing.rb

14 lines
146 B
Ruby

class Testing < Application
def show_form
render
end
def submit_form
end
def redirect_to_root
redirect "/"
end
end