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

8 lines
118 B
Ruby
Raw Normal View History

class ButtonsController < ApplicationController
def show
end
def create
render :text => "success"
end
end