Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit c114a2c

Browse files
committed
WIP fix for Jruby spec
1 parent 645ae0d commit c114a2c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

spec/rspec/support/spec/stderr_splitter_spec.rb

+7-7
Original file line numberDiff line numberDiff line change
@@ -101,19 +101,19 @@
101101

102102
# This is essentially what the `to_stderr_from_any_process` matcher attempts
103103
# to do in CaptureStreamToTempfile.
104-
it 'is able to restore the stream from a cloned StdErrSplitter', :pending => RSpec::Support::Ruby.jruby? do
105-
cloned = $stderr.clone
106-
expect($stderr.to_io).not_to be_a(File)
104+
it 'is able to restore the stream from a cloned StdErrSplitter' do
105+
cloned = splitter.clone
106+
expect(splitter.to_io).not_to be_a(File)
107107

108108
tempfile = Tempfile.new("foo")
109109
begin
110-
$stderr.reopen(tempfile)
111-
expect($stderr.to_io).to be_a(File)
110+
splitter.reopen(tempfile)
111+
expect(splitter.to_io.path).to eq(tempfile.path)
112112
ensure
113-
$stderr.reopen(cloned)
113+
splitter.reopen(cloned)
114114
tempfile.close
115115
tempfile.unlink
116116
end
117-
expect($stderr.to_io).not_to be_a(File)
117+
expect(splitter.to_io.path).not_to eq tempfile.path
118118
end
119119
end

0 commit comments

Comments
 (0)