15 lines
425 B
Ruby
15 lines
425 B
Ruby
|
module RspecProfilingConnection
|
||
|
def establish_connection
|
||
|
::RspecProfiling::Collectors::PSQL::Result.establish_connection(ENV['RSPEC_PROFILING_POSTGRES_URL'])
|
||
|
end
|
||
|
end
|
||
|
|
||
|
if Rails.env.test?
|
||
|
RspecProfiling.configure do |config|
|
||
|
if ENV['RSPEC_PROFILING_POSTGRES_URL']
|
||
|
RspecProfiling::Collectors::PSQL.prepend(RspecProfilingConnection)
|
||
|
config.collector = RspecProfiling::Collectors::PSQL
|
||
|
end
|
||
|
end
|
||
|
end
|