Sha256: 86b15f7dc13e50d355422976fb8931dea0af510e1a91c2fe3bc8d16025395f2c
Contents?: true
Size: 747 Bytes
Versions: 2
Compression:
Stored size: 747 Bytes
Contents
# @!method have_output_on_stdout # This matchers checks if <command> has created output on stdout # # @return [Boolean] The result # # false: # * if command has not created output on stdout # true: # * if command created output on stdout # # @example Use matcher # # RSpec.describe do # it { expect(last_command_started).to have_output_on_stdout } # end RSpec::Matchers.define :have_output_on_stdout do |expected| match do |actual| @old_actual = actual next false unless @old_actual.respond_to? :stdout @old_actual.stop @actual = sanitize_text(actual.stdout) values_match?(expected, @actual) end diffable description { "have output on stdout: #{description_of expected}" } end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
aruba-1.0.0.pre.alpha.4 | lib/aruba/matchers/command/have_output_on_stdout.rb |
aruba-1.0.0.pre.alpha.3 | lib/aruba/matchers/command/have_output_on_stdout.rb |