class Fivemat::RSpec

def pending_fixed?(example)

def pending_fixed?(example)
  if example.execution_result[:exception].respond_to?(:pending_fixed?)
    example.execution_result[:exception].pending_fixed?
  else
    ::RSpec::Core::PendingExampleFixedError === example.execution_result[:exception]
  end
end