class Mixlib::ShellOut::Helper::FakeShellOut

Attributes

exitstatus[R]
status[R]
stderr[R]
stdout[R]

Public Class Methods

new(args, options, result) click to toggle source
# File lib/mixlib/shellout/helper.rb, line 178
def initialize(args, options, result)
  @args = args
  @options = options
  @stdout = result.stdout
  @stderr = result.stderr
  @exitstatus = result.exit_status
  @status = OpenStruct.new(success?: ( exitstatus == 0 ))
end

Public Instance Methods

error!() click to toggle source
# File lib/mixlib/shellout/helper.rb, line 191
def error!
  raise Mixlib::ShellOut::ShellCommandFailed, "Unexpected exit status of #{exitstatus} running #{@args}" if error?
end
error?() click to toggle source
# File lib/mixlib/shellout/helper.rb, line 187
def error?
  exitstatus != 0
end