fuel-library/tests/noop/Gemfile
Alex Schultz 4847f1478d Add coverage reports to tests
This change adds simplecov to show the coverage of the noop test files
and also includes the output from the rspec-puppet reports into the
coverage/ folder.

The simplecov report is a report that is merged together based on the
entire noop test run. It will show where we have astute.yaml gaps for
our given noop spec tests.

The rspec-puppet reports are named based on the astute.yaml file that
was used to generate each report.

Change-Id: I9dda550c960fb2742f1f0862305e144a3fb1d9d6
Closes-Bug: #1506557
2015-10-16 09:01:03 -05:00

23 lines
493 B
Ruby

source 'https://rubygems.org'
group :development, :test do
gem 'puppetlabs_spec_helper'
gem 'puppet-lint', '~> 0.3.2'
gem 'rspec-puppet', '~> 2.2.0'
gem 'rspec-puppet-utils', '~> 2.0.0'
gem 'openstack', :require => false
gem 'netaddr'
gem 'deep_merge'
gem 'pry', :require => false
gem 'simplecov', :require => false
end
if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', :require => false
end
# vim:ft=ruby