From 9402051b259d4fcd823e5dfdec76f2b5f9f01baf Mon Sep 17 00:00:00 2001 From: Nate Berkopec Date: Thu, 26 Sep 2019 12:55:23 +0200 Subject: [PATCH] Failing test for #1994, this will be fixed in #1987 --- test/test_binder.rb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/test_binder.rb b/test/test_binder.rb index ee25156a..308b3529 100644 --- a/test/test_binder.rb +++ b/test/test_binder.rb @@ -64,6 +64,14 @@ class TestBinder < TestBinderBase assert_match %r!ssl://\[::1\]:(\d+)!, stdout end end + + def test_correct_doublebind + @binder.parse(["ssl://localhost:0?key=#{key}&cert=#{cert}", "tcp://localhost:0"], @events) + + stdout = @events.stdout.string + + # Unsure of what to actually assert on here yet + end end class TestBinderJRuby < TestBinderBase