class RSpec::Core::Configuration

def expectation_frameworks

Returns the configured expectation framework adapter module(s)
def expectation_frameworks
  settings[:expectation_frameworks] ||= begin
                                         require 'rspec/core/expecting/with_rspec'
                                         [RSpec::Core::ExpectationFrameworkAdapter]
                                       end
end