cucumber-nagios 0.7.5 → 0.7.6

Sign up to get free protection for your applications and to get access to all the features.
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(Net::SSH::AuthenticationFailed)
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(Net::SSH::AuthenticationFailed)
37
+ }.should_not raise_error
38
38
  end
39
39
  end
40
40
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 7
8
- - 5
9
- version: 0.7.5
8
+ - 6
9
+ version: 0.7.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Lindsay Holmwood