diff options
author | Akshay Karle <akshay.a.karle@gmail.com> | 2014-01-06 18:25:09 -0300 |
---|---|---|
committer | Akshay Karle <akshay.a.karle@gmail.com> | 2014-01-06 18:25:09 -0300 |
commit | e30a3b6a9e4931201aab59f61ab27e60c7446b5c (patch) | |
tree | 88bf8454ffc4f371727bc491656d618bbe640dee /spec | |
parent | 76e139b00771a5509d4fbebb9a26a54349cca503 (diff) | |
download | chef-e30a3b6a9e4931201aab59f61ab27e60c7446b5c.tar.gz |
Fix a broken spec
Diffstat (limited to 'spec')
-rw-r--r-- | spec/mixlib/shellout_spec.rb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/spec/mixlib/shellout_spec.rb b/spec/mixlib/shellout_spec.rb index fed9c442e4..e20a85c52d 100644 --- a/spec/mixlib/shellout_spec.rb +++ b/spec/mixlib/shellout_spec.rb @@ -446,18 +446,17 @@ 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(:ruby_code) { '$stdout.puts "hello"; $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}") + stream.string.should include("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}") + stream.string.should include("world#{LINE_ENDING}") end end |