spec/abstract_io_spec.rb in childprocess-0.5.3 vs spec/abstract_io_spec.rb in childprocess-0.5.4
- old
+ new
@@ -4,9 +4,9 @@
let(:io) { ChildProcess::AbstractIO.new }
it "inherits the parent's IO streams" do
io.inherit!
- io.stdout.should eq STDOUT
- io.stderr.should eq STDERR
+ expect(io.stdout).to eq STDOUT
+ expect(io.stderr).to eq STDERR
end
end