diff options
author | ytti <saku@ytti.fi> | 2018-05-07 23:34:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-07 23:34:12 +0300 |
commit | 65ac41fe761903f72e6e1ab642a33a8c13abf483 (patch) | |
tree | b707df298448964357012f3694fc5ceb1546959b /spec/spec_helper.rb | |
parent | b61a6aeef7baccd24f260f13b6618f14a8bd37ae (diff) | |
parent | d76c544d500e2ba14e5541192529cb898fd5835d (diff) |
Merge pull request #1333 from gs-kamnas/runcounters
Add counters to correctly track the number of runs, successes and failures
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index fc5167f..00f46e5 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -20,3 +20,12 @@ def stub_oxidized_ssh Oxidized::SSH.any_instance.stubs(:disconnect).returns(true) Oxidized::SSH.any_instance.stubs(:disconnect_cli).returns(true) end + +def stub_oxidized_ssh_fail + Oxidized::SSH.any_instance.stubs(:connect).returns(false) + Oxidized::SSH.any_instance.stubs(:node).returns(@node) + Oxidized::SSH.any_instance.expects(:cmd).never + Oxidized::SSH.any_instance.stubs(:connect_cli).returns(false) + Oxidized::SSH.any_instance.stubs(:disconnect).returns(false) + Oxidized::SSH.any_instance.stubs(:disconnect_cli).returns(false) +end |