From 76e139b00771a5509d4fbebb9a26a54349cca503 Mon Sep 17 00:00:00 2001 From: Akshay Karle Date: Mon, 6 Jan 2014 17:58:46 -0300 Subject: Add a spec for showing stderr to live_stream. --- spec/mixlib/shellout_spec.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'spec') diff --git a/spec/mixlib/shellout_spec.rb b/spec/mixlib/shellout_spec.rb index 23d9a13..fed9c44 100644 --- a/spec/mixlib/shellout_spec.rb +++ b/spec/mixlib/shellout_spec.rb @@ -447,12 +447,18 @@ describe Mixlib::ShellOut do context "with a live stream" do let(:stream) { StringIO.new } let(:ruby_code) { 'puts "hello"' } + let(:ruby_code) { '$stderr.puts "world"' } let(:options) { { :live_stream => stream } } it "should copy the child's stdout to the live stream" do shell_cmd.run_command stream.string.should eql("hello#{LINE_ENDING}") end + + it "should copy the child's stderr to the live stream" do + shell_cmd.run_command + stream.string.should eql("world#{LINE_ENDING}") + end end context "with an input" do -- cgit v1.2.1