impressionist/tests/test_app/app/controllers/widgets_controller.rb

13 lines
222 B
Ruby

class WidgetsController < ApplicationController
impressionist :actions=>[:show, :index], :unique => [:controller_name, :action_name, :impressionable_id, :params]
def show
end
def index
end
def new
end
end