Commit 5766e066 authored by Nick Thomas's avatar Nick Thomas

Memoize ActiveRecord::Migrator.migrations in tests

parent dcfda304
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