mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
afabe994e0
In the AR test suite require_dependency does not make much sense. Just call vanilla require/load. Note that in the test that made explicit use of it, there are no autoload paths, and no constants have been autoloaded. In reality, the code ended up calling Kernel#load.
7 lines
124 B
Ruby
7 lines
124 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "models/arunit2_model"
|
|
|
|
class OtherDog < ARUnit2Model
|
|
self.table_name = "dogs"
|
|
end
|