We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ce8414 commit 4a9c098Copy full SHA for 4a9c098
spec/rspec/core/runner_spec.rb
@@ -192,18 +192,6 @@ def interrupt
192
it { should be_truthy }
193
end
194
195
- context "when drb server is started with another local ip address" do
196
- let(:drb_server) do
197
- instance_double(::DRb::DRbServer, :uri => "druby://192.168.0.1:0000/", :alive? => true)
198
- end
199
-
200
- before do
201
- allow(::IPSocket).to receive(:getaddress).and_return("192.168.0.1")
202
203
204
- it { should be_truthy }
205
206
207
context "when drb server is started with 127.0.0.1 but not alive" do
208
let(:drb_server) do
209
instance_double(::DRb::DRbServer, :uri => "druby://127.0.0.1:0000/", :alive? => false)
0 commit comments