rails/activerecord/test/models/other_dog.rb
Xavier Noria afabe994e0 Removes require_dependency from the AR test suite
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.
2020-05-06 09:01:38 +02:00

8 lines
124 B
Ruby

# frozen_string_literal: true
require "models/arunit2_model"
class OtherDog < ARUnit2Model
self.table_name = "dogs"
end