module Shoulda::Matchers::ActionController

def use_around_action(callback)

it { should_not use_around_action(:destroy_user) }
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