public
Description: Webrat - Ruby Acceptance Testing for Web applications
Homepage: http://gitrdoc.com/brynary/webrat/tree/master/
Clone URL: git://github.com/brynary/webrat.git
webrat / spec / integration / merb / app / controllers / testing.rb
100644 10 lines (7 sloc) 0.097 kb
1
2
3
4
5
6
7
8
9
10
class Testing < Application
  
  def show_form
    render
  end
  
  def submit_form
  end
  
end