File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 183
183
module ActiveSupport
184
184
class TestCase
185
185
include ActiveRecord ::TestFixtures
186
+ # `fixture_path=` was deprecated in favor of
187
+ # `fixture_paths=` in Rails 7.1, removed in Rails 7.2.
186
188
if respond_to? ( :fixture_paths= )
187
189
self . fixture_paths = [ File . dirname ( __FILE__ ) + "/fixtures" ]
188
190
else
189
191
self . fixture_path = File . dirname ( __FILE__ ) + "/fixtures"
190
192
end
191
193
192
- # use_transactional_fixtures= is deprecated and will be removed from Rails 5.1
193
- # (use use_transactional_tests= instead)
194
+ # ` use_transactional_fixtures=` was deprecated in favor of
195
+ # ` use_transactional_tests=` in Rails 5.0, removed in Rails 5.1.
194
196
if respond_to? ( :use_transactional_tests= )
195
197
self . use_transactional_tests = false
196
198
else
You can’t perform that action at this time.
0 commit comments