mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
11 lines
269 B
Ruby
11 lines
269 B
Ruby
|
require 'test/unit'
|
||
|
|
||
|
class TestPumaUnixSocket < Test::Unit::TestCase
|
||
|
def test_handler
|
||
|
handler = Rack::Handler.get(:puma)
|
||
|
assert_equal Rack::Handler::Puma, handler
|
||
|
handler = Rack::Handler.get('Puma')
|
||
|
assert_equal Rack::Handler::Puma, handler
|
||
|
end
|
||
|
end
|