Sha256: 4c938bdada73cf2cd48b8db22f2e436eacbc7abbdd04bdfd9474fe667f837ddc
Contents?: true
Size: 1.12 KB
Versions: 10
Compression:
Stored size: 1.12 KB
Contents
if ENV['COVERAGE'] != 'false' require 'simplecov' require 'coveralls' SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ SimpleCov::Formatter::HTMLFormatter, Coveralls::SimpleCov::Formatter ] SimpleCov.start do add_filter 'spec' end end Dir[ 'lib/vagrant-openstack-provider/version_checker.rb', 'lib/vagrant-openstack-provider/logging.rb', 'lib/vagrant-openstack-provider/config.rb', 'lib/vagrant-openstack-provider/config_resolver.rb', 'lib/vagrant-openstack-provider/utils.rb', 'lib/vagrant-openstack-provider/errors.rb', 'lib/vagrant-openstack-provider/provider.rb', 'lib/vagrant-openstack-provider/client/*.rb', 'lib/vagrant-openstack-provider/command/*.rb', 'lib/vagrant-openstack-provider/action/*.rb'].each { |file| require file[4, file.length - 1] } require 'rspec/its' require 'webmock/rspec' require 'fakefs/safe' require 'fakefs/spec_helpers' RSpec.configure do |config| config.include FakeFS::SpecHelpers, fakefs: true end I18n.load_path << File.expand_path('locales/en.yml', Pathname.new(File.expand_path('../../../', __FILE__))) VagrantPlugins::Openstack::Logging.init
Version data entries
10 entries across 10 versions & 2 rubygems