1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Failing test for #1994, this will be fixed in #1987

This commit is contained in:
Nate Berkopec 2019-09-26 12:55:23 +02:00
parent 9d8d0c6c80
commit 9402051b25
No known key found for this signature in database
GPG key ID: BDD7A4B8E43906A6

View file

@ -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