webrat/spec/integration/rails/app/controllers/webrat_controller.rb

14 lines
160 B
Ruby
Raw Normal View History

2008-12-29 06:30:26 +00:00
class WebratController < ApplicationController
2008-12-29 06:30:26 +00:00
def form
end
2008-12-29 06:30:26 +00:00
def submit
render :text => "OK"
end
def redirect
redirect_to :submit
end
2008-12-29 06:30:26 +00:00
end