mirror of
https://github.com/puppetlabs/vmpooler-provider-vsphere.git
synced 2026-01-26 03:18:41 -05:00
This copies in all needed files from the main VMPooler repo. Version 1.3.0 of VMPooler was used as the basis for this code.
19 lines
341 B
Ruby
19 lines
341 B
Ruby
require 'simplecov'
|
|
SimpleCov.start do
|
|
add_filter '/spec/'
|
|
end
|
|
require 'helpers'
|
|
require 'rbvmomi_helper'
|
|
require 'rbvmomi'
|
|
require 'rspec'
|
|
require 'vmpooler'
|
|
require 'redis'
|
|
require 'vmpooler/metrics'
|
|
|
|
def project_root_dir
|
|
File.dirname(File.dirname(__FILE__))
|
|
end
|
|
|
|
def fixtures_dir
|
|
File.join(project_root_dir, 'spec', 'fixtures')
|
|
end
|