rubyconfig / config

Easiest way to add multi-environment yaml settings to Rails, Sinatra, Padrino and other Ruby projects.
Other
2.1k stars 230 forks source link

Address fixture path deprecation warnings #357

Closed cjlarose closed 6 months ago

cjlarose commented 6 months ago

Fixes deprecation warning in Rails 7.1

DEPRECATION WARNING: TestFixtures#fixture_path is deprecated and will be removed in Rails 7.2. Use #fixture_paths instead.
If multiple fixture paths have been configured with #fixture_paths, then #fixture_path will just return
the first path.

Since the test suite supports older Rails versions and fixtures_paths was introduced in Rails 7.1, we continue to call fixture_path unless fixtures_path is available.