spec/spec_helper.rb in specinfra-0.4.1 vs spec/spec_helper.rb in specinfra-0.5.0
- old
+ new
@@ -5,11 +5,10 @@
module SpecInfra
module Backend
class Ssh
def run_command(cmd, opts={})
- { :stdout => nil, :stderr => nil,
- :exit_status => 0, :exit_signal => nil }
+ CommandResult.new :stdout => nil, :exit_status => 0
end
end
end
end