cucumber-nagios 0.7.5 → 0.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/AUTHORS +1 -0
- data/lib/cucumber/nagios/steps/ssh_steps.rb +2 -2
- metadata +2 -2
data/AUTHORS
CHANGED
@@ -12,5 +12,6 @@ Adam Jacob <adam@opscode.com>
|
|
12
12
|
Juri Rischel Jensen <juri@fab-it.dk>
|
13
13
|
Gareth Rushgrove <gareth@morethanseven.net>
|
14
14
|
Jesse Newland <jesse@jnewland.com>
|
15
|
+
Luiz Ozaki
|
15
16
|
|
16
17
|
Portions of cucumber-nagios contain code originally contributed to Chef (http://github.com/opscode/chef)
|
@@ -9,7 +9,7 @@ Then /^I can ssh to "([^\"]*)" with the following credentials:$/ do |host, table
|
|
9
9
|
credentials.each do |creds|
|
10
10
|
lambda {
|
11
11
|
Net::SSH.start(host, creds["username"], :password => creds["password"], :auth_methods => @auth_methods)
|
12
|
-
}.should_not raise_error
|
12
|
+
}.should_not raise_error
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
@@ -34,7 +34,7 @@ Then /^I can ssh to the following hosts with these credentials:$/ do |table|
|
|
34
34
|
Net::SSH.start(session["hostname"], session["username"], :password => session["password"],
|
35
35
|
:auth_methods => session_auth_methods,
|
36
36
|
:keys => session_keys)
|
37
|
-
}.should_not raise_error
|
37
|
+
}.should_not raise_error
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|