spec/abstract_io_spec.rb in childprocess-0.3.9 vs spec/abstract_io_spec.rb in childprocess-0.4.0

- old
+ new

@@ -4,9 +4,9 @@ let(:io) { ChildProcess::AbstractIO.new } it "inherits the parent's IO streams" do io.inherit! - io.stdout.should == STDOUT - io.stderr.should == STDERR + io.stdout.should eq STDOUT + io.stderr.should eq STDERR end end