webrat/spec/integration/merb/app/controllers/testing.rb
Bryan Helmkamp 03914fd293 Whitespace
2009-04-07 20:30:12 -04:00

19 lines
204 B
Ruby

class Testing < Application
def show_form
render
end
def submit_form
end
def internal_redirect
redirect "/"
end
def external_redirect
redirect "http://google.com"
end
end