Sha256: 55e5dc630cd649f308fbb8d36a617be34e1f1420bb32bc5eb7e50b38b82fa675

Contents?: true

Size: 1.38 KB

Versions: 1

Compression:

Stored size: 1.38 KB

Contents

# encoding: UTF-8
require 'rspec/expectations'

# rspec matchers
RSpec::Matchers.define :have_stdout_match do |expected_stdout|
  match do |actual_output|
    !expected_stdout.match(actual_output.stdout).nil?
  end
  failure_message do |actual_output|
    "expected that '#{actual_output.stdout}' would match #{expected_stdout}"
  end
end

RSpec::Matchers.define :have_stderr_match do |expected_stderr|
  match do |actual_output|
    !expected_stderr.match(actual_output.stderr).nil?
  end
  failure_message do |actual_output|
    "expected that '#{actual_output.stderr}' would match #{expected_stderr}"
  end
end

RSpec::Matchers.define :have_no_stdout do
  match do |actual_output|
    stdout = actual_output.stdout
    stdout == '\r\n' || stdout == ''
  end
  failure_message do |actual_output|
    "expected that '#{actual_output.stdout}' would have no stdout"
  end
end

RSpec::Matchers.define :have_no_stderr do
  match do |actual_output|
    stderr = actual_output.stderr
    stderr == '\r\n' || stderr == ''
  end
  failure_message do |actual_output|
    "expected that '#{actual_output.stderr}' would have no stderr"
  end
end

RSpec::Matchers.define :have_exit_code do |expected_exit_code|
  match do |actual_output|
    expected_exit_code == actual_output.exitcode
  end
  failure_message do |actual_output|
    "expected exit code #{expected_exit_code}, but got #{actual_output.exitcode}"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
winrm-elevated-1.0.1 spec/matchers.rb