# File lib/rspec/core/configuration.rb, line 138
      def require_expectation_framework_adapter
        require case expectation_framework.to_s
        when /rspec/i
          'rspec/core/expecting/with_rspec'
        else
          raise ArgumentError, "#{expectation_framework.inspect} is not supported"
        end
      end