spec/irb_spec.rb in cute_print-1.0.0 vs spec/irb_spec.rb in cute_print-1.0.1

- old
+ new

@@ -8,15 +8,16 @@ describe CutePrint do it "should be able to inspect source when called from irb" do lib_path = File.join(File.dirname(__FILE__), "../lib/cute_print") - stdout, stderr = Open3.popen3("irb") do |stdin, stdout, stderr, wait_thr| + _stdout_output, stderr_output = + Open3.popen3("irb") do |stdin, stdout, stderr, wait_thr| stdin.puts "require #{lib_path.inspect}" stdin.puts "q {1 + 2}" stdin.close [stdout.read, stderr.read] end - expect(stderr).to eq "(1 + 2) is 3\n" + expect(stderr_output).to eq "(1 + 2) is 3\n" end end