0
votes
Extending ActiveRecord::Base in Rails does not work in the test environment
This works for me.
module ModelExtensions
def human_name_for(attr_hash)
# do something
end
end
In environment.rb
include ModelExtensions …
