Commit 4a90e25f authored by Yorick Peterse's avatar Yorick Peterse

Merge branch '23034-memoize-ar-migrator-migrations-in-tests' into 'master'

Memoize ActiveRecord::Migrator.migrations in tests

See merge request !6723
parents 8068d3e1 5766e066
if Rails.env.test?
require 'active_record/migration'
module ActiveRecord
class Migrator
class << self
alias_method :migrations_unmemoized, :migrations
# This method is called a large number of times per rspec example, and
# it reads + parses `db/migrate/*` each time. Memoizing it can save 0.5
# seconds per spec.
def migrations(paths)
@migrations ||= migrations_unmemoized(paths)
end
end
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment