Begin module testing

Import a few items from the skeleton to help with testing.
This commit is contained in:
Zach Leslie
2015-05-18 22:05:51 -07:00
parent 336923571c
commit a869e94ddd
6 changed files with 134 additions and 0 deletions

24
Gemfile Normal file
View File

@@ -0,0 +1,24 @@
source "https://rubygems.org"
group :test do
gem "rake"
gem "puppet", ENV['PUPPET_VERSION'] || '~> 3.7.0'
gem "rspec", '< 3.2.0'
gem "rspec-puppet", :git => 'https://github.com/rodjek/rspec-puppet.git'
gem "puppetlabs_spec_helper"
gem "metadata-json-lint"
gem "rspec-puppet-facts"
end
group :development do
gem "travis"
gem "travis-lint"
gem "vagrant-wrapper"
gem "puppet-blacksmith"
gem "guard-rake"
end
group :system_tests do
gem "beaker"
gem "beaker-rspec"
end