module RSpec::Core
def self.const_missing(name)
Alias the error for compatibility with extension gems (e.g. formatters)
def self.const_missing(name) return super unless name == :PendingExampleFixedError RSpec.deprecate("RSpec::Core::PendingExampleFixedError", :replacement => "RSpec::Core::Pending::PendingExampleFixedError") Pending::PendingExampleFixedError end