-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bumped the version number * Checked for GPG commands and provided a notice on failure * Fixed the nodesets
- Loading branch information
1 parent
7af129a
commit e13c48f
Showing
6 changed files
with
62 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ module Simp; end | |
module Simp::Rake; end | ||
|
||
class Simp::Rake::Helpers | ||
VERSION = '5.11.5' | ||
VERSION = '5.11.6' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,35 @@ | ||
require 'beaker-rspec' | ||
require 'tmpdir' | ||
require 'yaml' | ||
require 'simp/beaker_helpers' | ||
include Simp::BeakerHelpers | ||
require 'tmpdir' | ||
require 'pry' if ENV['PRY'] == 'yes' | ||
|
||
require 'acceptance/support/simp_rake_helpers' | ||
$LOAD_PATH.unshift(File.expand_path('../acceptance/support',__FILE__)) | ||
|
||
unless ENV['BEAKER_provision'] == 'no' | ||
hosts.each do |host| | ||
# Install Puppet | ||
if host.is_pe? | ||
install_pe | ||
else | ||
install_puppet | ||
end | ||
end | ||
end | ||
|
||
|
||
RSpec.configure do |c| | ||
# provide helper methods to individual examples AND example groups | ||
c.include Simp::BeakerHelpers::SimpRakeHelpers | ||
c.extend Simp::BeakerHelpers::SimpRakeHelpers | ||
|
||
# ensure that environment OS is ready on each host | ||
fix_errata_on hosts | ||
|
||
# Readable test descriptions | ||
c.formatter = :documentation | ||
|
||
# Configure all nodes in nodeset | ||
c.before :suite do | ||
end | ||
end |