summaryrefslogtreecommitdiff
path: root/spec/input
diff options
context:
space:
mode:
authorytti <saku@ytti.fi>2018-04-20 02:21:29 +0300
committerGitHub <noreply@github.com>2018-04-20 02:21:29 +0300
commitc761c4eb8825c06155127be61f0789073fc507f7 (patch)
tree42107c1d4634cc3e82b5fdb289c766c84b7214b9 /spec/input
parent234199264146bcd19f6949efbe122d62346dbdff (diff)
parent9ed50b5de4be4ae49c381fd539b9184631958d5b (diff)
Merge pull request #1288 from wk/tidy-up-tests
tidy up tests with rubocop
Diffstat (limited to 'spec/input')
-rw-r--r--spec/input/ssh_spec.rb15
1 files changed, 7 insertions, 8 deletions
diff --git a/spec/input/ssh_spec.rb b/spec/input/ssh_spec.rb
index 7be9139..2d1f5ce 100644
--- a/spec/input/ssh_spec.rb
+++ b/spec/input/ssh_spec.rb
@@ -14,23 +14,22 @@ describe Oxidized::SSH do
model: 'junos',
username: 'alma',
password: 'armud',
- vars: {ssh_proxy: 'test.com'})
-
+ vars: { ssh_proxy: 'test.com' })
end
describe "#connect" do
it "should use proxy command when proxy host given" do
ssh = Oxidized::SSH.new
- model = mock()
- model.expects(:cfg).returns({'ssh' => []})
+ model = mock
+ model.expects(:cfg).returns('ssh' => [])
@node.expects(:model).returns(model).at_least_once
- proxy = mock()
+ proxy = mock
Net::SSH::Proxy::Command.expects(:new).with("ssh test.com -W %h:%p").returns(proxy)
- Net::SSH.expects(:start).with('93.184.216.34', 'alma', {:port => 22, :password => 'armud', :timeout => Oxidized.config.timeout,
- :paranoid => Oxidized.config.input.ssh.secure, :auth_methods => ['none', 'publickey', 'password', 'keyboard-interactive'],
- :number_of_password_prompts => 0, :proxy => proxy})
+ Net::SSH.expects(:start).with('93.184.216.34', 'alma', :port => 22, :password => 'armud', :timeout => Oxidized.config.timeout,
+ :paranoid => Oxidized.config.input.ssh.secure, :auth_methods => ['none', 'publickey', 'password', 'keyboard-interactive'],
+ :number_of_password_prompts => 0, :proxy => proxy)
ssh.instance_variable_set("@exec", true)
ssh.connect(@node)