Skip to content

Commit

Permalink
fix test/test_unix_socket.rb (#1870)
Browse files Browse the repository at this point in the history
Fix to work reliably on platforms without UNIXSockets
  • Loading branch information
MSP-Greg authored and nateberkopec committed Jul 30, 2019
1 parent 31d91c3 commit 3066498
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/test_unix_socket.rb
Expand Up @@ -9,17 +9,19 @@ class TestPumaUnixSocket < Minitest::Test
Path = "test/puma.sock"

def setup
skip UNIX_SKT_MSG unless UNIX_SKT_EXIST
return unless UNIX_SKT_EXIST
@server = Puma::Server.new App
@server.add_unix_listener Path
@server.run
end

def teardown
return unless UNIX_SKT_EXIST
@server.stop(true)
end

def test_server
skip UNIX_SKT_MSG unless UNIX_SKT_EXIST
sock = UNIXSocket.new Path

sock << "GET / HTTP/1.0\r\nHost: blah.com\r\n\r\n"
Expand Down

0 comments on commit 3066498

Please sign in to comment.