class RSpec::Core::Configuration

def randomize?

def randomize?
  RSpec.warn_deprecation(
    "RSpec::Core::Configuration#randomize? is deprecated with no replacement. " +
    "In RSpec 3 individal example groups can use a particular ordering, " +
    "so `randomize?` is no longer a binary property of the entire suite. " +
    "Called from #{CallerFilter.first_non_rspec_line}."
  )
  value_for(:order, @order).to_s.match(/rand/)
end