module Regressor::Controller::Callback::AroundFilter

Public Instance Methods

around_callbacks() click to toggle source
# File lib/controller/callback/around_filter.rb, line 5
def around_callbacks
  around_filters.map do |filter_name|
    "it { should use_around_filter(#{filter_name}) }"
  end.compact.uniq.join("\n  ")
end