module Shoulda::Matchers::ActionController
def use_around_action(callback)
it { should use_around_action(:log_activity) }
Example:
Ensure a controller uses a given around_action
def use_around_action(callback) CallbackMatcher.new(callback, :around, :action) end