module RSpec::Rails

def fixture_path

def fixture_path
  RSpec.deprecate(
    "config.fixture_path",
    replacement: "config.fixture_paths",
    message: "Rails 7.1 has deprecated the singular fixture_path in favour of an array." \
    "You should migrate to plural:"
  )
  fixture_paths&.first
end