mirror of
https://github.com/puppetlabs/vmpooler-dns-gcp.git
synced 2026-01-26 02:58:42 -05:00
20 lines
350 B
Ruby
20 lines
350 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'simplecov'
|
|
SimpleCov.start do
|
|
add_filter '/spec/'
|
|
end
|
|
require 'helpers'
|
|
require 'rspec'
|
|
require 'vmpooler'
|
|
require 'redis'
|
|
require 'vmpooler/metrics'
|
|
require 'gcp_helper'
|
|
|
|
def project_root_dir
|
|
File.dirname(File.dirname(__FILE__))
|
|
end
|
|
|
|
def fixtures_dir
|
|
File.join(project_root_dir, 'spec', 'fixtures')
|
|
end
|