spec/abstract_io_spec.rb in childprocess-0.1.2 vs spec/abstract_io_spec.rb in childprocess-0.1.3

- old
+ new

@@ -1,12 +1,12 @@ require File.expand_path('../spec_helper', __FILE__) describe ChildProcess::AbstractIO do let(:io) { ChildProcess::AbstractIO.new } - + it "inherits the parent's IO streams" do io.inherit! - + io.stdout.should == STDOUT io.stderr.should == STDERR end end