Sha256: fe3661ae97a3618626db2d541309f352d16398b36461f832e690fc255b504589

Contents?: true

Size: 790 Bytes

Versions: 2

Compression:

Stored size: 790 Bytes

Contents

# @!method have_output_on_stderr
#   This matchers checks if <command> has created output on stderr
#
#   @return [Boolean] The result
#
#     false:
#     * if command has not created output on stderr
#     true:
#     * if command created output on stderr
#
#   @example Use matcher
#
#     RSpec.describe do
#       it { expect(last_command_started).to have_output_on_stderr }
#     end
RSpec::Matchers.define :have_output_on_stderr do |expected|
  match do |actual|
    @old_actual = actual

    raise "Expected #{@old_actual} to respond to #stderr" unless @old_actual.respond_to? :stderr

    @old_actual.stop

    @actual = sanitize_text(actual.stderr)

    values_match?(expected, @actual)
  end

  diffable

  description { "have output on stderr: #{description_of expected}" }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
aruba-1.0.0 lib/aruba/matchers/command/have_output_on_stderr.rb
aruba-1.0.0.pre.alpha.5 lib/aruba/matchers/command/have_output_on_stderr.rb