class Spec::Runner::ExampleGroupRunner

def load_files(files)

def load_files(files)
  # It's important that loading files (or choosing not to) stays the
  # responsibility of the ExampleGroupRunner. Some implementations (like)
  # the one using DRb may choose *not* to load files, but instead tell
  # someone else to do it over the wire.
  files.each do |file|
    load file
  end
end