this commit adds a rake test that supports running all unit tests. it also updates the openstack_test.sh script to invoke that rake test to run tests. Also, it adds unit testing requirements to the Gemfile.
11 lines
214 B
Ruby
11 lines
214 B
Ruby
source "https://rubygems.org"
|
|
gem "vagrant", "~>1.0"
|
|
gem "librarian-puppet"
|
|
gem "github_api", "0.8.1"
|
|
gem 'rake'
|
|
group :unit_tests do
|
|
gem 'puppetlabs_spec_helper'
|
|
gem 'puppet', '3.1.0'
|
|
gem 'rspec-puppet'
|
|
end
|